mirror of https://github.com/citusdata/citus.git
Missing file
parent
f9b61cd973
commit
f734d399cf
|
@ -1176,7 +1176,7 @@ DistributionDeleteMetadataCommand(Oid relationId)
|
|||
char *qualifiedRelationName = generate_qualified_relation_name(relationId);
|
||||
|
||||
appendStringInfo(deleteCommand,
|
||||
"SELECT pg_catalog.citus_internal_delete_partition_metadata(%s)",
|
||||
"SELECT citus_internal.delete_partition_metadata(%s)",
|
||||
quote_literal_cstr(qualifiedRelationName));
|
||||
|
||||
return deleteCommand->data;
|
||||
|
@ -4291,7 +4291,7 @@ DeletePlacementMetadataCommand(uint64 placementId)
|
|||
{
|
||||
StringInfo command = makeStringInfo();
|
||||
appendStringInfo(command,
|
||||
"SELECT pg_catalog.citus_internal_delete_placement_metadata(%ld)",
|
||||
"SELECT citus_internal.delete_placement_metadata(%ld)",
|
||||
placementId);
|
||||
return command->data;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue