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
Table and column names in generated SQL currently do not get explicitly quoted, but there are situations where it's necessary.
While you can manually quote identifiers in the string arguments to e.g. from_table and col, wouldn't it make sense to just always quote all identifiers automatically?
The text was updated successfully, but these errors were encountered:
Table and column names in generated SQL currently do not get explicitly quoted, but there are situations where it's necessary.
While you can manually quote identifiers in the string arguments to e.g. from_table and col, wouldn't it make sense to just always quote all identifiers automatically?
at the moment this falls intentionally to the user.
thing is that it isn't just where.col() but many other places where this would need to be applied.
There used to be a helper function which quoted columns.
I am uncertain what would be the best approach here, do you have an idea?
Table and column names in generated SQL currently do not get explicitly quoted, but there are situations where it's necessary.
While you can manually quote identifiers in the string arguments to e.g.
from_table
andcol
, wouldn't it make sense to just always quote all identifiers automatically?The text was updated successfully, but these errors were encountered: