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
Queries using incompatible collations and encodings, such as da_DK.utf8 with SQL_ASCII, result in errors like:
ERROR: collation "da_DK.utf8" for encoding "SQL_ASCII" does not exist ERROR: collation "pg_c_utf8" for encoding "SQL_ASCII" does not exist
Steps to Reproduce:
Execute a query specifying an unsupported collation: CREATE TABLE test_table (id INT COLLATE "da_DK.utf8");
Expected Behavior:
Distributed query validation may catch unsupported configurations and provide actionable error messages.
Suggested Solution:
Validate collation-encoding compatibility during table creation.
Enhance error messages to provide actionable guidance.
Severity:
Not a blocker:
SQL_ASCII is rarely used in modern databases. It is considered outdated and is generally not recommended for new applications.
The text was updated successfully, but these errors were encountered:
Queries using incompatible collations and encodings, such as da_DK.utf8 with SQL_ASCII, result in errors like:
ERROR: collation "da_DK.utf8" for encoding "SQL_ASCII" does not exist
ERROR: collation "pg_c_utf8" for encoding "SQL_ASCII" does not exist
Steps to Reproduce:
Execute a query specifying an unsupported collation:
CREATE TABLE test_table (id INT COLLATE "da_DK.utf8");
Expected Behavior:
Distributed query validation may catch unsupported configurations and provide actionable error messages.
Suggested Solution:
Severity:
Not a blocker:
SQL_ASCII is rarely used in modern databases. It is considered outdated and is generally not recommended for new applications.
The text was updated successfully, but these errors were encountered: