You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Making a query against a table that has been marked as "distributed" (either by CREATE TABLE ... DISTRIBUTE BY ... or using master_create_distributed_table) which does not yet have any shards (created using either \stage or master_create_worker_shards) results in different behavior depending upon whether the active planner is CitusDB's or pg_shard's:
Under CitusDB, the query returns zero rows
pg_shard raises an error directing the user to call master_create_worker_shards
The latter is obviously helpful under pg_shard (especially for users who have missed this step), but is confusing under CitusDB. Now that integration is tighter, we need to figure out what the best approach is.
The text was updated successfully, but these errors were encountered:
Making a query against a table that has been marked as "distributed" (either by
CREATE TABLE ... DISTRIBUTE BY ...
or usingmaster_create_distributed_table
) which does not yet have any shards (created using either\stage
ormaster_create_worker_shards
) results in different behavior depending upon whether the active planner is CitusDB's orpg_shard
's:pg_shard
raises an error directing the user to callmaster_create_worker_shards
The latter is obviously helpful under
pg_shard
(especially for users who have missed this step), but is confusing under CitusDB. Now that integration is tighter, we need to figure out what the best approach is.The text was updated successfully, but these errors were encountered: