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
CREATETABLEsampletable (x numeric);
INSERT INTO sampletable SELECT i FROM generate_series(1,1000000) i;
-- since there are some parallel workers reading from heap, and CommandCounterIncrement-- is not expected to be called during parallel operationsCREATETABLEsampletable_columnar USING columnar ASSELECT*FROM sampletable ORDER BY1ASC;
ERROR: cannot start commands during a parallel operation
In this case the workaround is to temporarily disable parallelism, e.g. set max_parallel_workers = 1.
The text was updated successfully, but these errors were encountered:
Example:
In this case the workaround is to temporarily disable parallelism, e.g.
set max_parallel_workers = 1
.The text was updated successfully, but these errors were encountered: