We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to alter table to a columnar one and I am getting error that the relation does not exist
SELECT columnar.alter_table_set_access_method("AccountSummary", 'columnar');
and I get the following error:
ERROR: relation "public.accountsummary" does not exist LINE 1: SELECT 'public.accountsummary'::regclass::oid
It seems that the extension does not consider double quotes which denotes case sensitivity. To reproduce it try the below:
CREATE TABLE "AccountSummary" ( id INT, i1 INT, i2 INT8, n NUMERIC, t TEXT );
and then:
SELECT columnar.alter_table_set_access_method('"AccountSummary"', 'columnar');
The text was updated successfully, but these errors were encountered:
Should be supported with #237
Sorry, something went wrong.
Any estimation on when will this fix will be released?
mkaruza
No branches or pull requests
What's wrong?
I am trying to alter table to a columnar one and I am getting error that the relation does not exist
SELECT columnar.alter_table_set_access_method("AccountSummary", 'columnar');
and I get the following error:
It seems that the extension does not consider double quotes which denotes case sensitivity.
To reproduce it try the below:
and then:
The text was updated successfully, but these errors were encountered: