Support quoted identifiers #114
Labels
enhancement
New feature or request
feature
New feature
parser
Involves BQL parser
proposal
Request for comment on proposed changes
Currently BQL uses single
'
and double"
quotes interchangeably as string delimiters and does not have the concept of quoted identifiers. This make is impossible to have column names that collide with BQL keywords or that contain non-alphanumeric characters. This is sometimes annoying.Standard SQL uses single quotes
'
for string literals and double quotes"
for quoting identifiers. https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERSShould BQL do the same? It would be a tiny patch to the parser. However, I expect this to break a fair number of user queries.
@blais, do you have an opinion?
The text was updated successfully, but these errors were encountered: