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
the identifier function checks to see if the passed identifier contains non alpha and non-numeric contents. However it should be checking the case of the alpha characters as well.
# what it does right nowidentifier('myAwesomeTable') =='myAwesomeTable'# what it should doidentifier('myAwesomeTable') =='"myAwesomeTable"'
Otherwise Postgres case-folds the identifier (myAwesomeTable -> myawesometable) and the select query fails.
The text was updated successfully, but these errors were encountered:
the identifier function checks to see if the passed identifier contains non alpha and non-numeric contents. However it should be checking the case of the alpha characters as well.
Otherwise Postgres case-folds the identifier (myAwesomeTable -> myawesometable) and the select query fails.
The text was updated successfully, but these errors were encountered: