-
-
Notifications
You must be signed in to change notification settings - Fork 257
Closed
Description
Submitted by: Jorge Andres Brugger (jbrugger)
Relate to CORE6324
Votes: 12
Related to CORE1058: "ALTER DOMAIN and ALTER TABLE don't allow to change character set and/or collation"
CREATE DOMAIN D_TEST AS
VARCHAR(10) CHARACTER SET ISO8859_1
COLLATE ES_ES
You can do:
alter DOMAIN d_test type
VARCHAR(10) CHARACTER SET iso8859_1
But you can't do:
alter DOMAIN d_test type
VARCHAR(10) CHARACTER SET iso8859_1
COLLATE ES_ES
Adding collate support for alter domain would be useful
hermannoffen