mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
ee5eb8bbe1
BitKeeper/etc/ignore: Added mysql-test/suite/funcs_1/r/innodb_views.warnings mysql-test/suite/funcs_1/r/memory_trig_03e.warnings mysql-test/suite/funcs_1/r/memory_views.warnings mysql-test/suite/funcs_1/r/myisam_trig_03e.warnings mysql-test/suite/funcs_1/r/myisam_views.warnings mysql-test/suite/funcs_1/r/ndb_trig_03e.warnings mysql-test/suite/funcs_1/r/ndb_views.warnings mysql-test/suite/partitions/r/diff mysql-test/suite/partitions/r/partition_bit_ndb.warnings mysql-test/suite/partitions/r/partition_special_innodb.warnings mysql-test/suite/partitions/r/partition_special_myisam.warnings storage/archive/archive_reader mysql-test/suite/funcs_1/r/innodb_trig_03e.warnings to the ignore list mysql-test/suite/funcs_2/include/check_charset.inc: inserted newline at the end of file. mysql-test/suite/objects/include/drop_all.inc: inserted newline at the end of file. mysql-test/suite/partitions/include/partition_key_32col.inc: inserted newline at the end of file. mysql-test/suite/rpl/data/rpl_mixed.dat: inserted newline at the end of file. mysql-test/suite/rpl/include/rpl_mixed_check_event.inc: inserted newline at the end of file. mysql-test/suite/rpl/include/rpl_mixed_check_select.inc: inserted newline at the end of file. mysql-test/suite/rpl/include/rpl_mixed_check_user.inc: inserted newline at the end of file. mysql-test/suite/rpl/include/rpl_mixed_check_view.inc: inserted newline at the end of file.
64 lines
2.2 KiB
C++
64 lines
2.2 KiB
C++
##### suite/funcs_1/include/memory_tb2.inc
|
|
|
|
set @@global.max_heap_table_size = 4294967295;
|
|
set @@session.max_heap_table_size = 4294967295;
|
|
|
|
--disable_warnings
|
|
drop table if exists tb2 ;
|
|
--enable_warnings
|
|
create table tb2 (
|
|
f59 numeric (0) unsigned,
|
|
f60 numeric (64) unsigned,
|
|
f61 numeric (0) zerofill,
|
|
f62 numeric (64) zerofill,
|
|
f63 numeric (0) unsigned zerofill,
|
|
f64 numeric (64) unsigned zerofill,
|
|
f65 numeric (0,0),
|
|
f66 numeric (63,30),
|
|
f67 numeric (0,0) unsigned,
|
|
f68 numeric (63,30) unsigned,
|
|
f69 numeric (0,0) zerofill,
|
|
f70 numeric (63,30) zerofill,
|
|
f71 numeric (0,0) unsigned zerofill,
|
|
f72 numeric (63,30) unsigned zerofill,
|
|
f73 real,
|
|
f74 real unsigned,
|
|
f75 real zerofill,
|
|
f76 real unsigned zerofill,
|
|
f77 double default 7.7,
|
|
f78 double unsigned default 7.7,
|
|
f79 double zerofill default 7.7,
|
|
f80 double unsigned zerofill default 8.8,
|
|
f81 float not null default 8.8,
|
|
f82 float unsigned not null default 8.8,
|
|
f83 float zerofill not null default 8.8,
|
|
f84 float unsigned zerofill not null default 8.8,
|
|
f85 float(0) not null default 8.8,
|
|
f86 float(23) not null default 8.8,
|
|
f87 float(0) unsigned not null default 8.8,
|
|
f88 float(23) unsigned not null default 8.8,
|
|
f89 float(0) zerofill not null default 8.8,
|
|
f90 float(23) zerofill not null default 8.8,
|
|
f91 float(0) unsigned zerofill not null default 8.8,
|
|
f92 float(23) unsigned zerofill not null default 8.8,
|
|
f93 float(24) not null default 8.8,
|
|
f94 float(53) not null default 8.8,
|
|
f95 float(24) unsigned not null default 8.8,
|
|
f96 float(53) unsigned not null default 8.8,
|
|
f97 float(24) zerofill not null default 8.8,
|
|
f98 float(53) zerofill not null default 8.8,
|
|
f99 float(24) unsigned zerofill not null default 8.8,
|
|
f100 float(53) unsigned zerofill not null default 8.8,
|
|
f101 date not null default '2000-01-01',
|
|
f102 time not null default 20,
|
|
f103 datetime not null default '2/2/2',
|
|
f104 timestamp not null default 20001231235959,
|
|
f105 year not null default 2000,
|
|
f106 year(3) not null default 2000,
|
|
f107 year(4) not null default 2000,
|
|
f108 enum("1enum","2enum") not null default "1enum",
|
|
f109 set("1set","2set") not null default "1set"
|
|
) engine = memory;
|
|
|
|
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
|
|
eval load data infile '$MYSQL_TEST_DIR/suite/funcs_1/data/memory_tb2.txt' into table tb2 ;
|