mirror of
https://github.com/MariaDB/server.git
synced 2025-12-16 22:03:23 +03:00
testsuite funcs_1
1. Fix the following bugs
Bug#30440 "datadict" tests (all engines) fail: Character sets depend on configuration
Solution: Test variants charset_collation_* adjusted to different builds
Bug#32603 "datadict" tests (all engines) fail in "community" tree: "PROFILING" table
Solution: Excluding "PROFILING" table from queries
Bug#33654 "slow log" is missing a line
Solution: Unify the content of the fields TABLES.TABLE_ROWS and
STATISTICS.CARDINALITY within result sets
Bug#34532 Some funcs_1 tests do not clean up at end of testing
Solution: DROP objects/reset global server variables modified during testing
+ let tests missing implementation end before loading of tables
Bug#31421 funcs_1: ndb__datadict fails, discrepancy between scripts and expected results
Solution: Cut <engine>__datadict tests into smaller tests + generate new results.
Bug#33599 INFORMATION_SCHEMA.STATISTICS got a new column INDEX_COMMENT: tests fail (2)
Generation of new results during post merge fix
Bug#33600 CHARACTER_OCTET_LENGTH is now CHARACTER_MAXIMUM_LENGTH * 4
Generation of new results during post merge fix
Bug#33631 Platform-specific replace of CHARACTER_MAXIMUM_LENGTH broken by 4-byte encoding
Generation of new results during post merge fix
+ removal of platform-specific replace routine (no more needed)
2. Restructure the tests
- Test not more than one INFORMATION_SCHEMA view per testscript
- Separate tests of I_S view layout+functionality from content related to the
all time existing databases "information_schema", "mysql" and "test"
- Avoid storage engine related variants of tests which are not sensible to
storage engines at all.
3. Reimplement or add some subtests + cleanup
There is a some probability that even the reviewed changeset
- does not fix all bugs from above or
- contains new bugs which show up on some platforms <> Linux or on one of
the various build types
4. The changeset contains fixes according to
- one code review
- minor bugs within testing code found after code review (accepted by reviewer)
- problems found during tests with 5.0.56 in build environment
61 lines
2.0 KiB
SQL
61 lines
2.0 KiB
SQL
##### suite/funcs_1/include/memory_tb1.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists tb1 ;
|
|
--enable_warnings
|
|
create table tb1 (
|
|
f1 char,
|
|
f2 char binary,
|
|
f3 char ascii,
|
|
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 = memory;
|
|
|
|
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
|
|
eval load data infile '$MYSQL_TEST_DIR/suite/funcs_1/data/memory_tb1.txt' into table tb1 ;
|