mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
28f9704737
Bug#37167 funcs_1: Many tests fail if the embedded server is used. Bug#37164 funcs_1: Some tests fail if an optional character set is missing. + some cleanup within the testsuite related to the fixes above + some adjustments to open bugs on Mac OS X Details: - Remove the initial loading of data from tests if these data are not somewhere retrieved - Remove any use of columns with attribute unicode (-> UCS2 is no more needed) from tests where unicode properties are not checked or somehow required - Create a separate branch of the Character maximum length test (CML). If UCS2 is available than this test gets applied to every available type of string column with attribute unicode This prevents any loss of coverage by the points above. - Disable the execution of is_tables_ndb which gives wrong results because of a bug. Correct the exepected results of this test. - In case of tests failing when applied to the embedded server 1) Create a variant of this test for the embedded server or 2) Skip the test in case of embedded server depending on purpose and complexity of test. - Skip the tests which could suffer from Bug 28309 First insert violates unique constraint - was "memory" table empty ? Bug 37380 Test funcs_1.is_columns_myisam_embedded fails on OS X (both bugs Mac OS X, embedded server, MySQL 5.0 only) - Minor improvements like remove typos
70 lines
2 KiB
SQL
70 lines
2 KiB
SQL
##### suite/funcs_1/include/myisam_tb1.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists tb1 ;
|
|
--enable_warnings
|
|
create table tb1 (
|
|
f1 char,
|
|
f2 char binary,
|
|
f3 char ascii,
|
|
f4 tinytext,
|
|
f5 text,
|
|
f6 mediumtext,
|
|
f7 longtext,
|
|
f8 tinyblob,
|
|
f9 blob,
|
|
f10 mediumblob,
|
|
f11 longblob,
|
|
f12 binary,
|
|
f13 tinyint,
|
|
f14 tinyint unsigned,
|
|
f15 tinyint zerofill,
|
|
f16 tinyint unsigned zerofill,
|
|
f17 smallint,
|
|
f18 smallint unsigned,
|
|
f19 smallint zerofill,
|
|
f20 smallint unsigned zerofill,
|
|
f21 mediumint,
|
|
f22 mediumint unsigned,
|
|
f23 mediumint zerofill,
|
|
f24 mediumint unsigned zerofill,
|
|
f25 int,
|
|
f26 int unsigned,
|
|
f27 int zerofill,
|
|
f28 int unsigned zerofill,
|
|
f29 bigint,
|
|
f30 bigint unsigned,
|
|
f31 bigint zerofill,
|
|
f32 bigint unsigned zerofill,
|
|
f33 decimal not null DEFAULT 9.9,
|
|
f34 decimal unsigned not null DEFAULT 9.9,
|
|
f35 decimal zerofill not null DEFAULT 9.9,
|
|
f36 decimal unsigned zerofill not null DEFAULT 9.9,
|
|
f37 decimal (0) not null DEFAULT 9.9,
|
|
f38 decimal (64) not null DEFAULT 9.9,
|
|
f39 decimal (0) unsigned not null DEFAULT 9.9,
|
|
f40 decimal (64) unsigned not null DEFAULT 9.9,
|
|
f41 decimal (0) zerofill not null DEFAULT 9.9,
|
|
f42 decimal (64) zerofill not null DEFAULT 9.9,
|
|
f43 decimal (0) unsigned zerofill not null DEFAULT 9.9,
|
|
f44 decimal (64) unsigned zerofill not null DEFAULT 9.9,
|
|
f45 decimal (0,0) not null DEFAULT 9.9,
|
|
f46 decimal (63,30) not null DEFAULT 9.9,
|
|
f47 decimal (0,0) unsigned not null DEFAULT 9.9,
|
|
f48 decimal (63,30) unsigned not null DEFAULT 9.9,
|
|
f49 decimal (0,0) zerofill not null DEFAULT 9.9,
|
|
f50 decimal (63,30) zerofill not null DEFAULT 9.9,
|
|
f51 decimal (0,0) unsigned zerofill not null DEFAULT 9.9,
|
|
f52 decimal (63,30) unsigned zerofill not null DEFAULT 9.9,
|
|
f53 numeric not null DEFAULT 99,
|
|
f54 numeric unsigned not null DEFAULT 99,
|
|
f55 numeric zerofill not null DEFAULT 99,
|
|
f56 numeric unsigned zerofill not null DEFAULT 99,
|
|
f57 numeric (0) not null DEFAULT 99,
|
|
f58 numeric (64) not null DEFAULT 99
|
|
) engine = myisam;
|
|
|
|
--replace_result $MYSQLTEST_VARDIR <MYSQLTEST_VARDIR>
|
|
eval
|
|
load data infile '$MYSQLTEST_VARDIR/std_data_ln/funcs_1/myisam_tb1.txt'
|
|
into table tb1;
|