summaryrefslogtreecommitdiff
path: root/mysql-test/main/ctype_utf32_uca.result
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2021-11-28 16:55:15 +0400
committerOleksandr Byelkin <sanja@mariadb.com>2022-08-10 15:04:24 +0200
commit133446828c9dcb484476e4b3598af0d63d056a6e (patch)
treecf511dbe61a84c1eed97250dc8f92fe7798a098d /mysql-test/main/ctype_utf32_uca.result
parent6bc10f8026e691444f0d2e857a5d0de4b88fa11f (diff)
downloadmariadb-git-133446828c9dcb484476e4b3598af0d63d056a6e.tar.gz
MDEV-27009 Add UCA-14.0.0 collations
- Added one neutral and 22 tailored (language specific) collations based on Unicode Collation Algorithm version 14.0.0. Collations were added for Unicode character sets utf8mb3, utf8mb4, ucs2, utf16, utf32. Every tailoring was added with four accent and case sensitivity flag combinations, e.g: * utf8mb4_uca1400_swedish_as_cs * utf8mb4_uca1400_swedish_as_ci * utf8mb4_uca1400_swedish_ai_cs * utf8mb4_uca1400_swedish_ai_ci and their _nopad_ variants: * utf8mb4_uca1400_swedish_nopad_as_cs * utf8mb4_uca1400_swedish_nopad_as_ci * utf8mb4_uca1400_swedish_nopad_ai_cs * utf8mb4_uca1400_swedish_nopad_ai_ci - Introducing a conception of contextually typed named collations: CREATE DATABASE db1 CHARACTER SET utf8mb4; CREATE TABLE db1.t1 (a CHAR(10) COLLATE uca1400_as_ci); The idea is that there is no a need to specify the character set prefix in the new collation names. It's enough to type just the suffix "uca1400_as_ci". The character set is taken from the context. In the above example script the context character set is utf8mb4. So the CREATE TABLE will make a column with the collation utf8mb4_uca1400_as_ci. Short collations names can be used in any parts of the SQL syntax where the COLLATE clause is understood. - New collations are displayed only one time (without character set combinations) by these statements: SELECT * FROM INFORMATION_SCHEMA.COLLATIONS; SHOW COLLATION; For example, all these collations: - utf8mb3_uca1400_swedish_as_ci - utf8mb4_uca1400_swedish_as_ci - ucs2_uca1400_swedish_as_ci - utf16_uca1400_swedish_as_ci - utf32_uca1400_swedish_as_ci have just one entry in INFORMATION_SCHEMA.COLLATIONS and SHOW COLLATION, with COLLATION_NAME equal to "uca1400_swedish_as_ci", which is the suffix without the character set name: SELECT COLLATION_NAME FROM INFORMATION_SCHEMA.COLLATIONS WHERE COLLATION_NAME LIKE '%uca1400_swedish_as_ci'; +-----------------------+ | COLLATION_NAME | +-----------------------+ | uca1400_swedish_as_ci | +-----------------------+ Note, the behaviour of old collations did not change. Non-unicode collations (e.g. latin1_swedish_ci) and old UCA-4.0.0 collations (e.g. utf8mb4_unicode_ci) are still displayed with the character set prefix, as before. - The structure of the table INFORMATION_SCHEMA.COLLATIONS was changed. The NOT NULL constraint was removed from these columns: - CHARACTER_SET_NAME - ID - IS_DEFAULT and from the corresponding columns in SHOW COLLATION. For example: SELECT COLLATION_NAME, CHARACTER_SET_NAME, ID, IS_DEFAULT FROM INFORMATION_SCHEMA.COLLATIONS WHERE COLLATION_NAME LIKE '%uca1400_swedish_as_ci'; +-----------------------+--------------------+------+------------+ | COLLATION_NAME | CHARACTER_SET_NAME | ID | IS_DEFAULT | +-----------------------+--------------------+------+------------+ | uca1400_swedish_as_ci | NULL | NULL | NULL | +-----------------------+--------------------+------+------------+ The NULL value in these columns now means that the collation is applicable to multiple character sets. The behavioir of old collations did not change. Make sure your client programs can handle NULL values in these columns. - The structure of the table INFORMATION_SCHEMA.COLLATION_CHARACTER_SET_APPLICABILITY was changed. Three new NOT NULL columns were added: - FULL_COLLATION_NAME - ID - IS_DEFAULT New collations have multiple entries in COLLATION_CHARACTER_SET_APPLICABILITY. The column COLLATION_NAME contains the collation name without the character set prefix. The column FULL_COLLATION_NAME contains the collation name with the character set prefix. Old collations have full collation name in both FULL_COLLATION_NAME and COLLATION_NAME. SELECT COLLATION_NAME, FULL_COLLATION_NAME, CHARACTER_SET_NAME, ID, IS_DEFAULT FROM INFORMATION_SCHEMA.COLLATION_CHARACTER_SET_APPLICABILITY WHERE FULL_COLLATION_NAME RLIKE '^(utf8mb4|latin1).*swedish.*ci$'; +-----------------------------+-------------------------------------+--------------------+------+------------+ | COLLATION_NAME | FULL_COLLATION_NAME | CHARACTER_SET_NAME | ID | IS_DEFAULT | +-----------------------------+-------------------------------------+--------------------+------+------------+ | latin1_swedish_ci | latin1_swedish_ci | latin1 | 8 | Yes | | latin1_swedish_nopad_ci | latin1_swedish_nopad_ci | latin1 | 1032 | | | utf8mb4_swedish_ci | utf8mb4_swedish_ci | utf8mb4 | 232 | | | uca1400_swedish_ai_ci | utf8mb4_uca1400_swedish_ai_ci | utf8mb4 | 2368 | | | uca1400_swedish_as_ci | utf8mb4_uca1400_swedish_as_ci | utf8mb4 | 2370 | | | uca1400_swedish_nopad_ai_ci | utf8mb4_uca1400_swedish_nopad_ai_ci | utf8mb4 | 2372 | | | uca1400_swedish_nopad_as_ci | utf8mb4_uca1400_swedish_nopad_as_ci | utf8mb4 | 2374 | | +-----------------------------+-------------------------------------+--------------------+------+------------+ - Other INFORMATION_SCHEMA queries: SELECT COLLATION_NAME FROM INFORMATION_SCHEMA.COLUMNS; SELECT COLLATION_NAME FROM INFORMATION_SCHEMA.PARAMETERS; SELECT TABLE_COLLATION FROM INFORMATION_SCHEMA.TABLES; SELECT DEFAULT_COLLATION_NAME FROM INFORMATION_SCHEMA.SCHEMATA; SELECT COLLATION_NAME FROM INFORMATION_SCHEMA.ROUTINES; SELECT COLLATION_CONNECTION FROM INFORMATION_SCHEMA.EVENTS; SELECT DATABASE_COLLATION FROM INFORMATION_SCHEMA.EVENTS; SELECT COLLATION_CONNECTION FROM INFORMATION_SCHEMA.ROUTINES; SELECT DATABASE_COLLATION FROM INFORMATION_SCHEMA.ROUTINES; SELECT COLLATION_CONNECTION FROM INFORMATION_SCHEMA.TRIGGERS; SELECT DATABASE_COLLATION FROM INFORMATION_SCHEMA.TRIGGERS; SELECT COLLATION_CONNECTION FROM INFORMATION_SCHEMA.VIEWS; display full collation names, including character sets prefix, for all collations, including new collations. Corresponding SHOW commands also display full collation names in collation related columns: SHOW CREATE TABLE t1; SHOW CREATE DATABASE db1; SHOW TABLE STATUS; SHOW CREATE FUNCTION f1; SHOW CREATE PROCEDURE p1; SHOW CREATE EVENT ev1; SHOW CREATE TRIGGER tr1; SHOW CREATE VIEW; These INFORMATION_SCHEMA queries and SHOW statements may change in the future, to display show collation names.
Diffstat (limited to 'mysql-test/main/ctype_utf32_uca.result')
-rw-r--r--mysql-test/main/ctype_utf32_uca.result579
1 files changed, 579 insertions, 0 deletions
diff --git a/mysql-test/main/ctype_utf32_uca.result b/mysql-test/main/ctype_utf32_uca.result
index 27aa934cf00..d5d9b13d0d0 100644
--- a/mysql-test/main/ctype_utf32_uca.result
+++ b/mysql-test/main/ctype_utf32_uca.result
@@ -7973,6 +7973,585 @@ t1 CREATE TABLE `t1` (
`c2` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`c2`))
) ENGINE=MyISAM DEFAULT CHARSET=latin1
DROP TABLE t1;
+SET NAMES utf8;
#
# End of 10.4 tests
#
+#
+# Start of 10.9 tests
+#
+#
+# MDEV-27009 Add UCA-14.0.0 collations
+# Collation IDs in the protocol
+#
+SET @charset='utf32';
+FOR rec IN (SELECT COLLATION_NAME
+FROM INFORMATION_SCHEMA.COLLATION_CHARACTER_SET_APPLICABILITY
+WHERE CHARACTER_SET_NAME=@charset
+AND COLLATION_NAME RLIKE 'uca1400'
+ ORDER BY ID)
+DO
+SET NAMES utf8mb4;
+SET character_set_results=NULL;
+EXECUTE IMMEDIATE CONCAT('SELECT CONVERT('''' USING ',@charset,')',
+' COLLATE ', rec.COLLATION_NAME,
+' AS ', rec.COLLATION_NAME,
+' LIMIT 0');
+END FOR;
+$$
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_ai_ci 253 0 0 Y 0 39 160
+uca1400_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_ai_cs 253 0 0 Y 0 39 160
+uca1400_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_as_ci 253 0 0 Y 0 39 160
+uca1400_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_as_cs 253 0 0 Y 0 39 160
+uca1400_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_nopad_ai_ci 253 0 0 Y 0 39 160
+uca1400_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_nopad_ai_cs 253 0 0 Y 0 39 160
+uca1400_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_nopad_as_ci 253 0 0 Y 0 39 160
+uca1400_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_nopad_as_cs 253 0 0 Y 0 39 160
+uca1400_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_icelandic_ai_ci 253 0 0 Y 0 39 161
+uca1400_icelandic_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_icelandic_ai_cs 253 0 0 Y 0 39 161
+uca1400_icelandic_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_icelandic_as_ci 253 0 0 Y 0 39 161
+uca1400_icelandic_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_icelandic_as_cs 253 0 0 Y 0 39 161
+uca1400_icelandic_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_icelandic_nopad_ai_ci 253 0 0 Y 0 39 161
+uca1400_icelandic_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_icelandic_nopad_ai_cs 253 0 0 Y 0 39 161
+uca1400_icelandic_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_icelandic_nopad_as_ci 253 0 0 Y 0 39 161
+uca1400_icelandic_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_icelandic_nopad_as_cs 253 0 0 Y 0 39 161
+uca1400_icelandic_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_latvian_ai_ci 253 0 0 Y 0 39 162
+uca1400_latvian_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_latvian_ai_cs 253 0 0 Y 0 39 162
+uca1400_latvian_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_latvian_as_ci 253 0 0 Y 0 39 162
+uca1400_latvian_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_latvian_as_cs 253 0 0 Y 0 39 162
+uca1400_latvian_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_latvian_nopad_ai_ci 253 0 0 Y 0 39 162
+uca1400_latvian_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_latvian_nopad_ai_cs 253 0 0 Y 0 39 162
+uca1400_latvian_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_latvian_nopad_as_ci 253 0 0 Y 0 39 162
+uca1400_latvian_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_latvian_nopad_as_cs 253 0 0 Y 0 39 162
+uca1400_latvian_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_romanian_ai_ci 253 0 0 Y 0 39 163
+uca1400_romanian_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_romanian_ai_cs 253 0 0 Y 0 39 163
+uca1400_romanian_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_romanian_as_ci 253 0 0 Y 0 39 163
+uca1400_romanian_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_romanian_as_cs 253 0 0 Y 0 39 163
+uca1400_romanian_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_romanian_nopad_ai_ci 253 0 0 Y 0 39 163
+uca1400_romanian_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_romanian_nopad_ai_cs 253 0 0 Y 0 39 163
+uca1400_romanian_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_romanian_nopad_as_ci 253 0 0 Y 0 39 163
+uca1400_romanian_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_romanian_nopad_as_cs 253 0 0 Y 0 39 163
+uca1400_romanian_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovenian_ai_ci 253 0 0 Y 0 39 164
+uca1400_slovenian_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovenian_ai_cs 253 0 0 Y 0 39 164
+uca1400_slovenian_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovenian_as_ci 253 0 0 Y 0 39 164
+uca1400_slovenian_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovenian_as_cs 253 0 0 Y 0 39 164
+uca1400_slovenian_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovenian_nopad_ai_ci 253 0 0 Y 0 39 164
+uca1400_slovenian_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovenian_nopad_ai_cs 253 0 0 Y 0 39 164
+uca1400_slovenian_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovenian_nopad_as_ci 253 0 0 Y 0 39 164
+uca1400_slovenian_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovenian_nopad_as_cs 253 0 0 Y 0 39 164
+uca1400_slovenian_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_polish_ai_ci 253 0 0 Y 0 39 165
+uca1400_polish_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_polish_ai_cs 253 0 0 Y 0 39 165
+uca1400_polish_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_polish_as_ci 253 0 0 Y 0 39 165
+uca1400_polish_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_polish_as_cs 253 0 0 Y 0 39 165
+uca1400_polish_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_polish_nopad_ai_ci 253 0 0 Y 0 39 165
+uca1400_polish_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_polish_nopad_ai_cs 253 0 0 Y 0 39 165
+uca1400_polish_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_polish_nopad_as_ci 253 0 0 Y 0 39 165
+uca1400_polish_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_polish_nopad_as_cs 253 0 0 Y 0 39 165
+uca1400_polish_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_estonian_ai_ci 253 0 0 Y 0 39 166
+uca1400_estonian_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_estonian_ai_cs 253 0 0 Y 0 39 166
+uca1400_estonian_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_estonian_as_ci 253 0 0 Y 0 39 166
+uca1400_estonian_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_estonian_as_cs 253 0 0 Y 0 39 166
+uca1400_estonian_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_estonian_nopad_ai_ci 253 0 0 Y 0 39 166
+uca1400_estonian_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_estonian_nopad_ai_cs 253 0 0 Y 0 39 166
+uca1400_estonian_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_estonian_nopad_as_ci 253 0 0 Y 0 39 166
+uca1400_estonian_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_estonian_nopad_as_cs 253 0 0 Y 0 39 166
+uca1400_estonian_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish_ai_ci 253 0 0 Y 0 39 167
+uca1400_spanish_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish_ai_cs 253 0 0 Y 0 39 167
+uca1400_spanish_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish_as_ci 253 0 0 Y 0 39 167
+uca1400_spanish_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish_as_cs 253 0 0 Y 0 39 167
+uca1400_spanish_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish_nopad_ai_ci 253 0 0 Y 0 39 167
+uca1400_spanish_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish_nopad_ai_cs 253 0 0 Y 0 39 167
+uca1400_spanish_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish_nopad_as_ci 253 0 0 Y 0 39 167
+uca1400_spanish_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish_nopad_as_cs 253 0 0 Y 0 39 167
+uca1400_spanish_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_swedish_ai_ci 253 0 0 Y 0 39 168
+uca1400_swedish_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_swedish_ai_cs 253 0 0 Y 0 39 168
+uca1400_swedish_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_swedish_as_ci 253 0 0 Y 0 39 168
+uca1400_swedish_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_swedish_as_cs 253 0 0 Y 0 39 168
+uca1400_swedish_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_swedish_nopad_ai_ci 253 0 0 Y 0 39 168
+uca1400_swedish_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_swedish_nopad_ai_cs 253 0 0 Y 0 39 168
+uca1400_swedish_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_swedish_nopad_as_ci 253 0 0 Y 0 39 168
+uca1400_swedish_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_swedish_nopad_as_cs 253 0 0 Y 0 39 168
+uca1400_swedish_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_turkish_ai_ci 253 0 0 Y 0 39 169
+uca1400_turkish_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_turkish_ai_cs 253 0 0 Y 0 39 169
+uca1400_turkish_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_turkish_as_ci 253 0 0 Y 0 39 169
+uca1400_turkish_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_turkish_as_cs 253 0 0 Y 0 39 169
+uca1400_turkish_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_turkish_nopad_ai_ci 253 0 0 Y 0 39 169
+uca1400_turkish_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_turkish_nopad_ai_cs 253 0 0 Y 0 39 169
+uca1400_turkish_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_turkish_nopad_as_ci 253 0 0 Y 0 39 169
+uca1400_turkish_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_turkish_nopad_as_cs 253 0 0 Y 0 39 169
+uca1400_turkish_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_czech_ai_ci 253 0 0 Y 0 39 170
+uca1400_czech_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_czech_ai_cs 253 0 0 Y 0 39 170
+uca1400_czech_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_czech_as_ci 253 0 0 Y 0 39 170
+uca1400_czech_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_czech_as_cs 253 0 0 Y 0 39 170
+uca1400_czech_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_czech_nopad_ai_ci 253 0 0 Y 0 39 170
+uca1400_czech_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_czech_nopad_ai_cs 253 0 0 Y 0 39 170
+uca1400_czech_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_czech_nopad_as_ci 253 0 0 Y 0 39 170
+uca1400_czech_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_czech_nopad_as_cs 253 0 0 Y 0 39 170
+uca1400_czech_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_danish_ai_ci 253 0 0 Y 0 39 171
+uca1400_danish_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_danish_ai_cs 253 0 0 Y 0 39 171
+uca1400_danish_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_danish_as_ci 253 0 0 Y 0 39 171
+uca1400_danish_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_danish_as_cs 253 0 0 Y 0 39 171
+uca1400_danish_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_danish_nopad_ai_ci 253 0 0 Y 0 39 171
+uca1400_danish_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_danish_nopad_ai_cs 253 0 0 Y 0 39 171
+uca1400_danish_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_danish_nopad_as_ci 253 0 0 Y 0 39 171
+uca1400_danish_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_danish_nopad_as_cs 253 0 0 Y 0 39 171
+uca1400_danish_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_lithuanian_ai_ci 253 0 0 Y 0 39 172
+uca1400_lithuanian_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_lithuanian_ai_cs 253 0 0 Y 0 39 172
+uca1400_lithuanian_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_lithuanian_as_ci 253 0 0 Y 0 39 172
+uca1400_lithuanian_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_lithuanian_as_cs 253 0 0 Y 0 39 172
+uca1400_lithuanian_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_lithuanian_nopad_ai_ci 253 0 0 Y 0 39 172
+uca1400_lithuanian_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_lithuanian_nopad_ai_cs 253 0 0 Y 0 39 172
+uca1400_lithuanian_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_lithuanian_nopad_as_ci 253 0 0 Y 0 39 172
+uca1400_lithuanian_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_lithuanian_nopad_as_cs 253 0 0 Y 0 39 172
+uca1400_lithuanian_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovak_ai_ci 253 0 0 Y 0 39 173
+uca1400_slovak_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovak_ai_cs 253 0 0 Y 0 39 173
+uca1400_slovak_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovak_as_ci 253 0 0 Y 0 39 173
+uca1400_slovak_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovak_as_cs 253 0 0 Y 0 39 173
+uca1400_slovak_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovak_nopad_ai_ci 253 0 0 Y 0 39 173
+uca1400_slovak_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovak_nopad_ai_cs 253 0 0 Y 0 39 173
+uca1400_slovak_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovak_nopad_as_ci 253 0 0 Y 0 39 173
+uca1400_slovak_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_slovak_nopad_as_cs 253 0 0 Y 0 39 173
+uca1400_slovak_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish2_ai_ci 253 0 0 Y 0 39 174
+uca1400_spanish2_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish2_ai_cs 253 0 0 Y 0 39 174
+uca1400_spanish2_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish2_as_ci 253 0 0 Y 0 39 174
+uca1400_spanish2_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish2_as_cs 253 0 0 Y 0 39 174
+uca1400_spanish2_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish2_nopad_ai_ci 253 0 0 Y 0 39 174
+uca1400_spanish2_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish2_nopad_ai_cs 253 0 0 Y 0 39 174
+uca1400_spanish2_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish2_nopad_as_ci 253 0 0 Y 0 39 174
+uca1400_spanish2_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_spanish2_nopad_as_cs 253 0 0 Y 0 39 174
+uca1400_spanish2_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_roman_ai_ci 253 0 0 Y 0 39 175
+uca1400_roman_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_roman_ai_cs 253 0 0 Y 0 39 175
+uca1400_roman_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_roman_as_ci 253 0 0 Y 0 39 175
+uca1400_roman_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_roman_as_cs 253 0 0 Y 0 39 175
+uca1400_roman_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_roman_nopad_ai_ci 253 0 0 Y 0 39 175
+uca1400_roman_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_roman_nopad_ai_cs 253 0 0 Y 0 39 175
+uca1400_roman_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_roman_nopad_as_ci 253 0 0 Y 0 39 175
+uca1400_roman_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_roman_nopad_as_cs 253 0 0 Y 0 39 175
+uca1400_roman_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_persian_ai_ci 253 0 0 Y 0 39 176
+uca1400_persian_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_persian_ai_cs 253 0 0 Y 0 39 176
+uca1400_persian_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_persian_as_ci 253 0 0 Y 0 39 176
+uca1400_persian_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_persian_as_cs 253 0 0 Y 0 39 176
+uca1400_persian_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_persian_nopad_ai_ci 253 0 0 Y 0 39 176
+uca1400_persian_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_persian_nopad_ai_cs 253 0 0 Y 0 39 176
+uca1400_persian_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_persian_nopad_as_ci 253 0 0 Y 0 39 176
+uca1400_persian_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_persian_nopad_as_cs 253 0 0 Y 0 39 176
+uca1400_persian_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_esperanto_ai_ci 253 0 0 Y 0 39 177
+uca1400_esperanto_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_esperanto_ai_cs 253 0 0 Y 0 39 177
+uca1400_esperanto_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_esperanto_as_ci 253 0 0 Y 0 39 177
+uca1400_esperanto_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_esperanto_as_cs 253 0 0 Y 0 39 177
+uca1400_esperanto_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_esperanto_nopad_ai_ci 253 0 0 Y 0 39 177
+uca1400_esperanto_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_esperanto_nopad_ai_cs 253 0 0 Y 0 39 177
+uca1400_esperanto_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_esperanto_nopad_as_ci 253 0 0 Y 0 39 177
+uca1400_esperanto_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_esperanto_nopad_as_cs 253 0 0 Y 0 39 177
+uca1400_esperanto_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_hungarian_ai_ci 253 0 0 Y 0 39 178
+uca1400_hungarian_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_hungarian_ai_cs 253 0 0 Y 0 39 178
+uca1400_hungarian_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_hungarian_as_ci 253 0 0 Y 0 39 178
+uca1400_hungarian_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_hungarian_as_cs 253 0 0 Y 0 39 178
+uca1400_hungarian_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_hungarian_nopad_ai_ci 253 0 0 Y 0 39 178
+uca1400_hungarian_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_hungarian_nopad_ai_cs 253 0 0 Y 0 39 178
+uca1400_hungarian_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_hungarian_nopad_as_ci 253 0 0 Y 0 39 178
+uca1400_hungarian_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_hungarian_nopad_as_cs 253 0 0 Y 0 39 178
+uca1400_hungarian_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_sinhala_ai_ci 253 0 0 Y 0 39 179
+uca1400_sinhala_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_sinhala_ai_cs 253 0 0 Y 0 39 179
+uca1400_sinhala_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_sinhala_as_ci 253 0 0 Y 0 39 179
+uca1400_sinhala_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_sinhala_as_cs 253 0 0 Y 0 39 179
+uca1400_sinhala_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_sinhala_nopad_ai_ci 253 0 0 Y 0 39 179
+uca1400_sinhala_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_sinhala_nopad_ai_cs 253 0 0 Y 0 39 179
+uca1400_sinhala_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_sinhala_nopad_as_ci 253 0 0 Y 0 39 179
+uca1400_sinhala_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_sinhala_nopad_as_cs 253 0 0 Y 0 39 179
+uca1400_sinhala_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_german2_ai_ci 253 0 0 Y 0 39 180
+uca1400_german2_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_german2_ai_cs 253 0 0 Y 0 39 180
+uca1400_german2_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_german2_as_ci 253 0 0 Y 0 39 180
+uca1400_german2_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_german2_as_cs 253 0 0 Y 0 39 180
+uca1400_german2_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_german2_nopad_ai_ci 253 0 0 Y 0 39 180
+uca1400_german2_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_german2_nopad_ai_cs 253 0 0 Y 0 39 180
+uca1400_german2_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_german2_nopad_as_ci 253 0 0 Y 0 39 180
+uca1400_german2_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_german2_nopad_as_cs 253 0 0 Y 0 39 180
+uca1400_german2_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_vietnamese_ai_ci 253 0 0 Y 0 39 183
+uca1400_vietnamese_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_vietnamese_ai_cs 253 0 0 Y 0 39 183
+uca1400_vietnamese_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_vietnamese_as_ci 253 0 0 Y 0 39 183
+uca1400_vietnamese_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_vietnamese_as_cs 253 0 0 Y 0 39 183
+uca1400_vietnamese_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_vietnamese_nopad_ai_ci 253 0 0 Y 0 39 183
+uca1400_vietnamese_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_vietnamese_nopad_ai_cs 253 0 0 Y 0 39 183
+uca1400_vietnamese_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_vietnamese_nopad_as_ci 253 0 0 Y 0 39 183
+uca1400_vietnamese_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_vietnamese_nopad_as_cs 253 0 0 Y 0 39 183
+uca1400_vietnamese_nopad_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_croatian_ai_ci 253 0 0 Y 0 39 736
+uca1400_croatian_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_croatian_ai_cs 253 0 0 Y 0 39 736
+uca1400_croatian_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_croatian_as_ci 253 0 0 Y 0 39 736
+uca1400_croatian_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_croatian_as_cs 253 0 0 Y 0 39 736
+uca1400_croatian_as_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_croatian_nopad_ai_ci 253 0 0 Y 0 39 736
+uca1400_croatian_nopad_ai_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_croatian_nopad_ai_cs 253 0 0 Y 0 39 736
+uca1400_croatian_nopad_ai_cs
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_croatian_nopad_as_ci 253 0 0 Y 0 39 736
+uca1400_croatian_nopad_as_ci
+Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
+def uca1400_croatian_nopad_as_cs 253 0 0 Y 0 39 736
+uca1400_croatian_nopad_as_cs
+SET NAMES utf8;
+#
+# End of 10.9 tests
+#