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
triggers the error Column for primary key not found in schema: COLUMN_NAME
When creating a table, we build a schema and apply normalization to column names with to_ascii_lowercase call, which is enabled by default.
But during constraint check we don't do this for the constraint column name.
Describe the bug
Query
triggers the error
Column for primary key not found in schema: COLUMN_NAME
When creating a table, we build a schema and apply normalization to column names with to_ascii_lowercase call, which is enabled by default.
But during constraint check we don't do this for the constraint column name.
To Reproduce
No response
Expected behavior
The query should work without errors
Additional context
Suggestion to use just to_lowercase (since we don't pass column names with ascii symbols)
The text was updated successfully, but these errors were encountered: