
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
In FB2.0 it is possible to create index on
VARCHAR(499) CHARACTER SET WIN1250 COLLATE PXW_CSY
column, while in FB2.1 the maximum is only 330.
(seems FB2.1 considers that collation as 3-level, while 2.0 as 2-level)
RECREATE TABLE TAB21(
ID INTEGER,
A VARCHAR(330) CHARACTER SET WIN1250 COLLATE PXW_CSY,
CONSTRAINT CU UNIQUE(A) );
RECREATE TABLE TAB20(
ID INTEGER,
A VARCHAR(499) CHARACTER SET WIN1250 COLLATE PXW_CSY,
CONSTRAINT CU UNIQUE(A) );
|
|
Description
|
In FB2.0 it is possible to create index on
VARCHAR(499) CHARACTER SET WIN1250 COLLATE PXW_CSY
column, while in FB2.1 the maximum is only 330.
(seems FB2.1 considers that collation as 3-level, while 2.0 as 2-level)
RECREATE TABLE TAB21(
ID INTEGER,
A VARCHAR(330) CHARACTER SET WIN1250 COLLATE PXW_CSY,
CONSTRAINT CU UNIQUE(A) );
RECREATE TABLE TAB20(
ID INTEGER,
A VARCHAR(499) CHARACTER SET WIN1250 COLLATE PXW_CSY,
CONSTRAINT CU UNIQUE(A) );
|
Show » |
|
Changes to allow ACCENT INSENSTIVE and CASE INSENSITIVE for all collations incorrectly changed the rules of level calculation.