mirror of https://github.com/citusdata/citus.git
Fixes order of citus_drop_all_shards arguments (#5200)
parent
acb5ae6ab6
commit
7755d5ed3a
|
@ -93,8 +93,8 @@ citus_truncate_trigger(PG_FUNCTION_ARGS)
|
||||||
|
|
||||||
DirectFunctionCall4(citus_drop_all_shards,
|
DirectFunctionCall4(citus_drop_all_shards,
|
||||||
ObjectIdGetDatum(relationId),
|
ObjectIdGetDatum(relationId),
|
||||||
CStringGetTextDatum(relationName),
|
|
||||||
CStringGetTextDatum(schemaName),
|
CStringGetTextDatum(schemaName),
|
||||||
|
CStringGetTextDatum(relationName),
|
||||||
BoolGetDatum(dropShardsMetadataOnly));
|
BoolGetDatum(dropShardsMetadataOnly));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue