Home
last modified time | relevance | path

Searched refs:ddlCommands (Results 1 – 4 of 4) sorted by relevance

/dports/databases/pg_citus/citus-10.2.3/src/backend/distributed/commands/
H A Ddependencies.c56 List *ddlCommands = NULL; in EnsureDependenciesExistOnAllNodes() local
64 ddlCommands = list_concat(ddlCommands, dependencyCommands); in EnsureDependenciesExistOnAllNodes()
72 if (list_length(ddlCommands) <= 0) in EnsureDependenciesExistOnAllNodes()
79 ddlCommands = list_concat(list_make1(DISABLE_DDL_PROPAGATION), ddlCommands); in EnsureDependenciesExistOnAllNodes()
124 ddlCommands); in EnsureDependenciesExistOnAllNodes()
271 List *ddlCommands = NIL; in ReplicateAllDependenciesToNode() local
305 ddlCommands = list_concat(ddlCommands, in ReplicateAllDependenciesToNode()
308 if (list_length(ddlCommands) <= 0) in ReplicateAllDependenciesToNode()
315 ddlCommands = list_concat(list_make1(DISABLE_DDL_PROPAGATION), ddlCommands); in ReplicateAllDependenciesToNode()
318 CitusExtensionOwnerName(), ddlCommands); in ReplicateAllDependenciesToNode()
H A Dtype.c950 List *ddlCommands = NIL; in CreateTypeDDLCommandsIdempotent() local
971 ddlCommands = lappend(ddlCommands, (void *) ddlCommand); in CreateTypeDDLCommandsIdempotent()
979 ddlCommands = lappend(ddlCommands, buf.data); in CreateTypeDDLCommandsIdempotent()
981 return ddlCommands; in CreateTypeDDLCommandsIdempotent()
H A Dextension.c804 List *ddlCommands = list_make1((void *) ddlCommand); in CreateExtensionDDLCommand() local
806 return ddlCommands; in CreateExtensionDDLCommand()
/dports/databases/pg_citus/citus-10.2.3/src/backend/distributed/metadata/
H A Dnode_metadata.c604 List *ddlCommands = NIL; in PropagateNodeWideObjects() local
613 ddlCommands = list_concat(ddlCommands, alterRoleSetCommands); in PropagateNodeWideObjects()
616 if (list_length(ddlCommands) > 0) in PropagateNodeWideObjects()
619 ddlCommands = lcons(DISABLE_DDL_PROPAGATION, ddlCommands); in PropagateNodeWideObjects()
620 ddlCommands = lappend(ddlCommands, ENABLE_DDL_PROPAGATION); in PropagateNodeWideObjects()
626 ddlCommands); in PropagateNodeWideObjects()