-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
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
Quote Nested Table Column Types #19442
Comments
Let me close this issue as it's basically a duplicate of #3584. |
Sorry, I was missing the last sentence. Yes, I think the issue is obsolete.
|
Regarding the breakage of existing queries, isn't there a way to determine whether an identifier needs quoting when the type string is being produced such that identifiers that need quoting are quoted and existing ones that don't aren't quoted. The ones that need quoting can't be parsed today, so at least superficially it seems like this can be done with introducing anything backwards incompatible. I guess that question is: are there identifiers that would appear to require quoting, that can be successfully parsed today without quotes? |
cc @martint |
Nested column types should be quoted properly in information_schema selects,
describe
, andshow columns
statements.To illustrate the situation, lets say I have a table like this:
The following works great:
But when I do a describe, instead of 1 column, it seems as if there are two columns rather than one:
The same behavior happens with information_schema:
As a side note, SHOW CREATE TABLE seems to quote nested columns.
The text was updated successfully, but these errors were encountered: