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
I want to create a columnstore table with a CREATE TABLE AS SELECT statement.
createtablet1 (id int, name text);
insert into t1 values (1, 'Alice'), (2, 'Bob');
createtablet2 using columnstore asselect*from t1;
ERROR: columnstore_tuple_insert not implemented
CTAS WITH NO_DATA is not a problem.
createtablet2 using columnstore asselect*from t1 with no data;
Why are you requesting this feature?
Because the CTAS statement is convenient for creating a columnstore table while copying part of a table.
What is your proposed implementation for this feature?
No response
The text was updated successfully, but these errors were encountered:
What feature are you requesting?
I want to create a columnstore table with a CREATE TABLE AS SELECT statement.
CTAS WITH NO_DATA is not a problem.
Why are you requesting this feature?
Because the CTAS statement is convenient for creating a columnstore table while copying part of a table.
What is your proposed implementation for this feature?
No response
The text was updated successfully, but these errors were encountered: