mirror of https://github.com/citusdata/citus.git
Merge pull request #654 from citusdata/fix_unused_istoplevel_variable
Fix Unused Parameter isTopLevel in ExecuteDistributedDDLCommandpull/637/head
commit
7d1e8a3e6e
|
@ -1014,7 +1014,7 @@ ExecuteDistributedDDLCommand(Oid relationId, const char *ddlCommandString,
|
|||
bool executionOK = false;
|
||||
bool allPlacementsAccessible = false;
|
||||
|
||||
PreventTransactionChain(true, "distributed DDL commands");
|
||||
PreventTransactionChain(isTopLevel, "distributed DDL commands");
|
||||
SetLocalCommitProtocolTo2PC();
|
||||
|
||||
allPlacementsAccessible = AllFinalizedPlacementsAccessible(relationId);
|
||||
|
|
Loading…
Reference in New Issue