mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
266fde77b2
Allow one to run bootstrap even if --skip-maria is used (needed for bootstrap.test) Fixed lots of compiler warnings NOTE: maria-big and maria-recover tests failes becasue of bugs in transaction log handling. Sanja knows about this and is working on it! mysql-test/mysql-test-run.pl: Added --loose-skip-maria to MYSQLD_BOOTSTRAP_CMD to get bootstrap.test to work mysql-test/r/maria-recovery.result: Updated results mysql-test/t/bootstrap.test: Removed not needed empty line mysql-test/t/change_user.test: Fixed results for 32 bit systems mysql-test/t/maria-big.test: Only run this when you use --big mysql-test/t/maria-recovery.test: Added test case for recovery with big blobs mysys/my_uuid.c: Fixed compiler warning sql/mysqld.cc: Allow one to run bootstrap even if --skip-maria is used (needed for bootstrap.test) sql/set_var.cc: Compare max_join_size with ULONG_MAX instead of HA_POS_ERROR as we set max_join_size to ULONG_MAX by default storage/maria/ma_bitmap.c: Added __attribute((unused)) to fix compiler warning storage/maria/ma_blockrec.c: Added casts to remove compiler warnings Change variable types to avoid compiler warnings storage/maria/ma_check.c: Added casts to remove compiler warnings storage/maria/ma_checkpoint.c: Change variable types to avoid compiler warnings storage/maria/ma_create.c: Change variable types to avoid compiler warnings storage/maria/ma_delete.c: Added casts to remove compiler warnings storage/maria/ma_key_recover.c: Added casts to remove compiler warnings storage/maria/ma_loghandler.c: Moved initiazation of prev_buffer first as this could otherwise not be set in case of errors storage/maria/ma_page.c: Added casts to remove compiler warnings storage/maria/ma_pagecache.c: Added __attribute((unused)) to fix compiler warning storage/maria/ma_pagecrc.c: Added #ifndef DBUG_OFF to remove compiler warning storage/maria/ma_recovery.c: Added casts to remove compiler warnings storage/maria/ma_write.c: Added casts to remove compiler warnings storage/maria/maria_chk.c: Split long string into two to avoid compiler warnings storage/myisam/ft_boolean_search.c: Added LINT_INIT() to remove compiler warning support-files/compiler_warnings.supp: Suppress wrong compiler warning unittest/mytap/tap.c: Fixed declaration to match prototypes to remove compiler warnings
62 lines
1.4 KiB
Text
62 lines
1.4 KiB
Text
# Test of scenarios potentially too big for --valgrind or --mem
|
|
--source include/have_maria.inc
|
|
--source include/big_test.inc
|
|
|
|
enable_info;
|
|
set storage_engine=maria;
|
|
set global maria_log_file_size=4294967295;
|
|
disable_warnings;
|
|
drop table if exists t1, t2;
|
|
enable_warnings;
|
|
|
|
#
|
|
# Test generating data with insert select
|
|
# This test case failed once a long time ago
|
|
#
|
|
|
|
create table t1(a char(3));
|
|
insert into t1 values("abc");
|
|
insert into t1 select "def" from t1;
|
|
insert into t1 select "ghi" from t1;
|
|
insert into t1 select "jkl" from t1;
|
|
insert into t1 select "mno" from t1;
|
|
insert into t1 select "pqr" from t1;
|
|
insert into t1 select "stu" from t1;
|
|
insert into t1 select "vwx" from t1;
|
|
insert into t1 select "yza" from t1;
|
|
insert into t1 select "ceg" from t1;
|
|
insert into t1 select "ikm" from t1;
|
|
insert into t1 select "oqs" from t1;
|
|
select count(*) from t1;
|
|
insert into t1 select "uwy" from t1;
|
|
create table t2 select * from t1;
|
|
select count(*) from t1;
|
|
select count(*) from t2;
|
|
drop table t1, t2;
|
|
|
|
#
|
|
# Test creating a really big blob (up to 16M)
|
|
#
|
|
|
|
set @@max_allowed_packet=400000000;
|
|
create table t1 (a int, b longtext);
|
|
insert into t1 values (1,"123456789012345678901234567890"),(2,"09876543210987654321");
|
|
|
|
let $loop=23;
|
|
while ($loop)
|
|
{
|
|
update t1 set b=CONCAT(b,b);
|
|
dec $loop;
|
|
}
|
|
select a,length(b) from t1;
|
|
check table t1;
|
|
let $loop=22;
|
|
while ($loop)
|
|
{
|
|
update t1 set b=mid(b,1,length(b)/2);
|
|
dec $loop;
|
|
}
|
|
select a,length(b) from t1;
|
|
check table t1;
|
|
|
|
drop table t1;
|