mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
merge
This commit is contained in:
@@ -72,10 +72,10 @@ show local variables like 'table_type';
|
||||
show global variables like 'table_type';
|
||||
set GLOBAL query_cache_size=100000;
|
||||
|
||||
set myisam_max_sort_file_size=10000, GLOBAL myisam_max_sort_file_size=20000;
|
||||
show variables like 'myisam_max_sort_file_size';
|
||||
set GLOBAL myisam_max_sort_file_size=2000000;
|
||||
show global variables like 'myisam_max_sort_file_size';
|
||||
set myisam_max_sort_file_size=default;
|
||||
set GLOBAL myisam_max_sort_file_size=default;
|
||||
--replace_result 2147483647 FILE_SIZE 9223372036854775807 FILE_SIZE
|
||||
show variables like 'myisam_max_sort_file_size';
|
||||
|
||||
set global net_retry_count=10, session net_retry_count=10;
|
||||
@@ -132,6 +132,10 @@ set @@concurrent_insert=1;
|
||||
set @@global.sql_auto_is_null=1;
|
||||
--error 1228
|
||||
select @@global.sql_auto_is_null;
|
||||
--error 1229
|
||||
set myisam_max_sort_file_size=100;
|
||||
--error 1229
|
||||
set myisam_max_extra_sort_file_size=100;
|
||||
|
||||
# Test setting all variables
|
||||
|
||||
@@ -176,9 +180,9 @@ set max_tmp_tables=100;
|
||||
set global max_user_connections=100;
|
||||
select @@max_user_connections;
|
||||
set global max_write_lock_count=100;
|
||||
set myisam_max_extra_sort_file_size=100;
|
||||
set global myisam_max_extra_sort_file_size=100;
|
||||
select @@myisam_max_extra_sort_file_size;
|
||||
set myisam_max_sort_file_size=100;
|
||||
set global myisam_max_sort_file_size=100;
|
||||
set myisam_sort_buffer_size=100;
|
||||
set net_buffer_length=100;
|
||||
set net_read_timeout=100;
|
||||
@@ -236,3 +240,10 @@ check table t1,t2;
|
||||
select max(a) +1, max(a) +2 into @xx,@yy from t1;
|
||||
drop table t1,t2;
|
||||
|
||||
#
|
||||
# error conditions
|
||||
#
|
||||
|
||||
--error 1193
|
||||
select @@xxxxxxxxxx;
|
||||
select 1;
|
||||
|
||||
Reference in New Issue
Block a user