mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
945fa0d913
mysql-test/t/variables.test: Reset delay_key_write, otherwise maria.maria test may fail sql/set_var.cc: Reset ha_open_options if one resets the delay_key_write variable. Before there was no way to reset it without restarting mysqld, which caused some tests to fail
58 lines
1.7 KiB
Text
58 lines
1.7 KiB
Text
# Maria tests which require partitioning enabled
|
|
|
|
--source include/have_partition.inc
|
|
-- source include/have_maria.inc
|
|
|
|
let $default_engine=`select @@global.storage_engine`;
|
|
let $default_checksum=`select @@global.maria_page_checksum`;
|
|
set global storage_engine=maria;
|
|
set session storage_engine=maria;
|
|
set global maria_page_checksum=0;
|
|
|
|
# Initialise
|
|
--disable_warnings
|
|
drop table if exists t1,t2;
|
|
drop view if exists v1;
|
|
--enable_warnings
|
|
SET SQL_WARNINGS=1;
|
|
|
|
#
|
|
# Bug #39227 Maria: crash with ALTER TABLE PARTITION
|
|
#
|
|
|
|
create table t1 (s1 int);
|
|
insert into t1 values (1);
|
|
--error ER_NO_PARTITION_FOR_GIVEN_VALUE
|
|
alter table t1 partition by list (s1) (partition p1 values in (2));
|
|
drop table t1;
|
|
|
|
#
|
|
# Test outer join const propagation
|
|
#
|
|
create table t2(a blob) engine=maria;
|
|
create table t1(a int primary key) engine=maria;
|
|
insert into t2 values ('foo'),('bar');
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
insert into t1 values (1);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
insert into t1 values (2);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
drop table t1,t2;
|
|
|
|
create table t2(a blob);
|
|
create table t1(a int primary key) PARTITION BY HASH (a) PARTITIONS 2;
|
|
insert into t2 values ('foo'),('bar');
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
insert into t1 values (1);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
insert into t1 values (2);
|
|
select * from t2 left join t1 on (t2.a=t1.a) where t2.a='bbb';
|
|
drop table t1,t2;
|
|
|
|
# Set defaults back
|
|
--disable_result_log
|
|
--disable_query_log
|
|
eval set global storage_engine=$default_engine, maria_page_checksum=$default_checksum;
|
|
set global maria_log_file_size=default;
|
|
--enable_result_log
|
|
--enable_query_log
|