mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / funcs_1 / t / is_cml_myisam.test
blob904cefbd4d7c7ce4c887184c83c9915640f03646
1 # suite/funcs_1/t/is_cml_myisam.test
3 # Check the content of information_schema.columns about tables using
4 # UNICODE columns.
5 # Variant for storage engine MyISAM
7 # Author:
8 # 2008-06-04 mleich Create this script based on older scripts and new code.
11 --source include/have_ucs2.inc
13 # This test cannot be used for the embedded server because privileges
14 # are expected within result sets.
15 --source include/not_embedded.inc
17 let $engine_type= MyISAM;
18 SET @@session.sql_mode = 'NO_ENGINE_SUBSTITUTION';
19 USE test;
20 --disable_warnings
21 DROP TABLE IF EXISTS t1;
22 --enable_warnings
23 eval CREATE TABLE t1
25    f1 CHAR         UNICODE,
26    f2 CHAR(0)      UNICODE,
27    f3 CHAR(10)     UNICODE,
28    f5 VARCHAR(0)   UNICODE,
29    f6 VARCHAR(255) UNICODE,
30    f7 VARCHAR(260) UNICODE,
31    f8 TEXT         UNICODE,
32    f9 TINYTEXT     UNICODE,
33    f10 MEDIUMTEXT  UNICODE,
34    f11 LONGTEXT    UNICODE
35 ) ENGINE = $engine_type;
37 # We look only for the tables created here.
38 let $my_where = WHERE table_schema LIKE 'test%';
39 --source suite/funcs_1/datadict/columns.inc
41 DROP TABLE t1;