Skip to content

Commit 4e64341

Browse files
committed
wip
1 parent 8652d7c commit 4e64341

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

contrib/mmts/multimaster.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2456,6 +2456,18 @@ static void MtmProcessUtility(Node *parsetree, const char *queryString,
24562456
heap_close(rel, NoLock);
24572457
}
24582458
break;
2459+
case T_DropStmt:
2460+
{
2461+
Oid relid;
2462+
Relation rel;
2463+
DropStmt *stmt = (DropStmt *) parsetree;
2464+
2465+
//relid = RelnameGetRelid(stmt->relation->relname);
2466+
//rel = heap_open(relid, ShareLock);
2467+
//skipCommand = rel->rd_rel->relpersistence == RELPERSISTENCE_TEMP;
2468+
//heap_close(rel, NoLock);
2469+
}
2470+
break;
24592471
default:
24602472
skipCommand = false;
24612473
break;

0 commit comments

Comments
 (0)