Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 33162a6

Browse files
committed
wip
1 parent a07363c commit 33162a6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

multimaster.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2467,6 +2467,18 @@ static void MtmProcessUtility(Node *parsetree, const char *queryString,
24672467
heap_close(rel, NoLock);
24682468
}
24692469
break;
2470+
case T_DropStmt:
2471+
{
2472+
Oid relid;
2473+
Relation rel;
2474+
DropStmt *stmt = (DropStmt *) parsetree;
2475+
2476+
//relid = RelnameGetRelid(stmt->relation->relname);
2477+
//rel = heap_open(relid, ShareLock);
2478+
//skipCommand = rel->rd_rel->relpersistence == RELPERSISTENCE_TEMP;
2479+
//heap_close(rel, NoLock);
2480+
}
2481+
break;
24702482
default:
24712483
skipCommand = false;
24722484
break;

0 commit comments

Comments
 (0)