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
CREATE COLLATION public."de-u-co-phonebk-x-icu" (provider = icu, locale = 'de-u-co-phonebk');
CREATE TABLE testtable (
name text PRIMARY KEY
);
After:
CREATE COLLATION public."de-u-co-phonebk-x-icu" (provider = icu, locale = 'de-u-co-phonebk');
CREATE TABLE testtable (
name text COLLATE public."de-u-co-phonebk-x-icu" PRIMARY KEY
);
Generated diff from 2.7.0:
ALTER TABLE testtable
ALTER COLUMN name TYPE text COLLATE public."de-u-co-phonebk-x-icu" PRIMARY KEY USING name::text COLLATE public."de-u-co-phonebk-x-icu" PRIMARY KEY /* TYPE change - table: testtable original: text primary key new: text COLLATE public."de-u-co-phonebk-x-icu" PRIMARY KEY */;
Variations with NOT NULL instead of PRIMARY KEY also trigger invalid SQL.
The text was updated successfully, but these errors were encountered:
Before:
After:
Generated diff from 2.7.0:
Variations with
NOT NULL
instead ofPRIMARY KEY
also trigger invalid SQL.The text was updated successfully, but these errors were encountered: