mariadb/mysql-test/t/query_prealloc_size_func.test
Horst Hunger 1fc5777320 Final fix for bug#38349: Did the changes due to the 2 reviews.
- Updated slow_query_log_file_basic and general_log_file basis instead of the func version as
the func version run good but the basic versions fail.
- Sent innodb.test to dev@innodb.com.
- variables.test has differences probably due to a bug in mtr or in the SET statement (see bug#39369).
- general_log_file_basic.test and slow_query_log_file_bsaic.test have differences, which might be 
produced by the new mtr (see bug#38124).
2008-09-10 12:50:39 +02:00

92 lines
3.1 KiB
Text

############# mysql-test\t\query_prealloc_size_func.test ######################
# #
# Variable Name: query_prealloc_size #
# Scope: GLOBAL & SESSION #
# Access Type: Dynamic #
# Data Type: integer #
# Default Value: 8192 #
# Values: 8192-4294967295 #
# #
# #
# Creation Date: 2008-02-22 #
# Author: Sharique Abdullah #
# #
# Description: Test Cases of Dynamic System Variable "query_prealloc_size" #
# that checks behavior of this variable in the following ways #
# * Default Value #
# * Valid & Invalid values #
# * Scope & Access method #
# * Cache behaviors #
# #
# Reference: #
# http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html #
# #
###############################################################################
--echo ** Setup **
--echo
#
# Setup
#
#
# Save initial value
#
SET @start_value = @@global.query_prealloc_size;
CREATE TABLE t1 (id INT AUTO_INCREMENT PRIMARY KEY, val TEXT(200));
INSERT INTO t1 VALUES(NULL,'a');
INSERT INTO t1 VALUES(NULL,'b');
INSERT INTO t1 VALUES(NULL,'c');
INSERT INTO t1 VALUES(NULL,'d');
SELECT * FROM t1 ORDER BY val;
SET SESSION query_prealloc_size = 8192;
--echo '#----------------------------FN_DYNVARS_137_05-----------------#'
#
# Session data integrity check & GLOBAL Value check
#
SET GLOBAL query_prealloc_size = 8192;
connect (con_int1,localhost,root,,);
connection con_int1;
SELECT @@SESSION.query_prealloc_size;
--echo Expected Value : 8192;
SET SESSION query_prealloc_size = 16384;
connect (con_int2,localhost,root,,);
connection con_int2;
SELECT @@SESSION.query_prealloc_size;
--echo Expected Value : 8192;
SET SESSION query_prealloc_size = 8192;
connection con_int1;
SELECT @@SESSION.query_prealloc_size;
--echo Expected Value : 16384;
connection con_int2;
SELECT @@SESSION.query_prealloc_size;
--echo Expected Value : 8192;
SELECT @@GLOBAL.query_prealloc_size;
--echo Expected Value : 8192;
connection default;
disconnect con_int1;
disconnect con_int2;
DROP TABLE t1;
SET @@global.query_prealloc_size = @start_value;