variables.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:12k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # test variables
  3. #
  4. --disable_warnings
  5. drop table if exists t1,t2;
  6. --enable_warnings
  7. set @`test`=1,@TEST=3,@select=2,@t5=1.23456;
  8. select @test,@`select`,@TEST,@not_used;
  9. set @test_int=10,@test_double=1e-10,@test_string="abcdeghi",@test_string2="abcdefghij",@select=NULL;
  10. --replace_result e-0 e- e+0 e+
  11. select @test_int,@test_double,@test_string,@test_string2,@select;
  12. set @test_int="hello",@test_double="hello",@test_string="hello",@test_string2="hello";
  13. select @test_int,@test_double,@test_string,@test_string2;
  14. set @test_int="hellohello",@test_double="hellohello",@test_string="hellohello",@test_string2="hellohello";
  15. select @test_int,@test_double,@test_string,@test_string2;
  16. set @test_int=null,@test_double=null,@test_string=null,@test_string2=null;
  17. select @test_int,@test_double,@test_string,@test_string2;
  18. select @t1:=(@t2:=1)+@t3:=4,@t1,@t2,@t3;
  19. explain extended select @t1:=(@t2:=1)+@t3:=4,@t1,@t2,@t3;
  20. select @t5;
  21. #
  22. # Test problem with WHERE and variables
  23. #
  24. CREATE TABLE t1 (c_id INT(4) NOT NULL, c_name CHAR(20), c_country CHAR(3), PRIMARY KEY(c_id));
  25. INSERT INTO t1 VALUES (1,'Bozo','USA'),(2,'Ronald','USA'),(3,'Kinko','IRE'),(4,'Mr. Floppy','GB');
  26. SELECT @min_cid:=min(c_id), @max_cid:=max(c_id) from t1;
  27. SELECT * FROM t1 WHERE c_id=@min_cid OR c_id=@max_cid;
  28. SELECT * FROM t1 WHERE c_id=@min_cid OR c_id=@max_cid OR c_id=666;
  29. ALTER TABLE t1 DROP PRIMARY KEY;
  30. select * from t1 where c_id=@min_cid OR c_id=@max_cid;
  31. drop table t1;
  32. #
  33. # Test system variables
  34. #
  35. set max_join_size=100;
  36. show variables like 'max_join_size';
  37. --replace_result 18446744073709551615 HA_POS_ERROR 4294967295 HA_POS_ERROR
  38. show global variables like 'max_join_size';
  39. set GLOBAL max_join_size=2000;
  40. show global variables like 'max_join_size';
  41. set max_join_size=DEFAULT;
  42. --replace_result 18446744073709551615 HA_POS_ERROR 4294967295 HA_POS_ERROR
  43. show variables like 'max_join_size';
  44. set GLOBAL max_join_size=DEFAULT;
  45. --replace_result 18446744073709551615 HA_POS_ERROR 4294967295 HA_POS_ERROR
  46. show global variables like 'max_join_size';
  47. set @@max_join_size=1000, @@global.max_join_size=2000;
  48. select @@local.max_join_size, @@global.max_join_size;
  49. select @@identity,  length(@@version)>0;
  50. select @@VERSION=version();
  51. select last_insert_id(345);
  52. explain extended select last_insert_id(345);
  53. select @@IDENTITY,last_insert_id(), @@identity;
  54. explain extended select @@IDENTITY,last_insert_id(), @@identity;
  55. set big_tables=OFF, big_tables=ON, big_tables=0, big_tables=1, big_tables="OFF", big_tables="ON";
  56. set global concurrent_insert=ON;
  57. show variables like 'concurrent_insert';
  58. set global concurrent_insert=1;
  59. show variables like 'concurrent_insert';
  60. set global concurrent_insert=0;
  61. show variables like 'concurrent_insert';
  62. set global concurrent_insert=OFF;
  63. show variables like 'concurrent_insert';
  64. set global concurrent_insert=DEFAULT;
  65. show variables like 'concurrent_insert';
  66. set storage_engine=MYISAM, storage_engine="HEAP", global storage_engine="MERGE";
  67. show local variables like 'storage_engine';
  68. show global variables like 'storage_engine';
  69. set GLOBAL query_cache_size=100000;
  70. set GLOBAL myisam_max_sort_file_size=2000000;
  71. show global variables like 'myisam_max_sort_file_size';
  72. set GLOBAL myisam_max_sort_file_size=default;
  73. --replace_result 2147483647 FILE_SIZE 9223372036854775807 FILE_SIZE
  74. show variables like 'myisam_max_sort_file_size';
  75. set global net_retry_count=10, session net_retry_count=10;
  76. set global net_buffer_length=1024, net_write_timeout=200, net_read_timeout=300;
  77. set session net_buffer_length=2048, net_write_timeout=500, net_read_timeout=600;
  78. show global variables like 'net_%';
  79. show session variables like 'net_%';
  80. set session net_buffer_length=8000, global net_read_timeout=900, net_write_timeout=1000;
  81. show global variables like 'net_%';
  82. show session variables like 'net_%';
  83. set net_buffer_length=1;
  84. show variables like 'net_buffer_length';
  85. set net_buffer_length=2000000000;
  86. show variables like 'net_buffer_length';
  87. set character set cp1251_koi8;
  88. show variables like "character_set_client";
  89. select @@timestamp>0;
  90. set @@rand_seed1=10000000,@@rand_seed2=1000000;
  91. select ROUND(RAND(),5);
  92. show variables like '%alloc%';
  93. set @@range_alloc_block_size=1024*16;
  94. set @@query_alloc_block_size=1024*17+2;
  95. set @@query_prealloc_size=1024*18;
  96. set @@transaction_alloc_block_size=1024*20-1;
  97. set @@transaction_prealloc_size=1024*21-1;
  98. select @@query_alloc_block_size;
  99. show variables like '%alloc%';
  100. set @@range_alloc_block_size=default;
  101. set @@query_alloc_block_size=default, @@query_prealloc_size=default;
  102. set transaction_alloc_block_size=default, @@transaction_prealloc_size=default;
  103. show variables like '%alloc%';
  104. #
  105. # Bug #10904 Illegal mix of collations between
  106. # a system variable and a constant
  107. #
  108. SELECT @@version LIKE 'non-existent';
  109. SELECT @@version_compile_os LIKE 'non-existent';
  110. # The following should give errors
  111. --error 1231
  112. set big_tables=OFFF;
  113. --error 1231
  114. set big_tables="OFFF";
  115. --error 1193
  116. set unknown_variable=1;
  117. --error 1232
  118. set max_join_size="hello";
  119. --error 1286
  120. set storage_engine=UNKNOWN_TABLE_TYPE;
  121. --error 1231
  122. set storage_engine=MERGE, big_tables=2;
  123. show local variables like 'storage_engine';
  124. --error 1229
  125. set SESSION query_cache_size=10000;
  126. --error 1230
  127. set GLOBAL storage_engine=DEFAULT;
  128. --error 1115
  129. set character_set_client=UNKNOWN_CHARACTER_SET;
  130. --error 1273
  131. set collation_connection=UNKNOWN_COLLATION;
  132. --error 1231
  133. set character_set_client=NULL;
  134. --error 1231
  135. set collation_connection=NULL;
  136. --error 1228
  137. set global autocommit=1;
  138. --error 1238
  139. select @@global.timestamp;
  140. --error 1193
  141. set @@version='';
  142. --error 1229
  143. set @@concurrent_insert=1;
  144. --error 1228
  145. set @@global.sql_auto_is_null=1;
  146. --error 1238
  147. select @@global.sql_auto_is_null;
  148. --error 1229
  149. set myisam_max_sort_file_size=100;
  150. --error 1229
  151. set myisam_max_extra_sort_file_size=100;
  152. --error 1231
  153. set @@SQL_WARNINGS=NULL;
  154. # Test setting all variables
  155. set autocommit=1;
  156. set big_tables=1;
  157. select @@autocommit, @@big_tables;
  158. set global binlog_cache_size=100;
  159. set bulk_insert_buffer_size=100;
  160. set character set cp1251_koi8;
  161. set character set default;
  162. set @@global.concurrent_insert=1;
  163. set global connect_timeout=100;
  164. select @@delay_key_write;
  165. set global delay_key_write="OFF";
  166. select @@delay_key_write;
  167. set global delay_key_write=ALL;
  168. select @@delay_key_write;
  169. set global delay_key_write=1;
  170. select @@delay_key_write;
  171. set global delayed_insert_limit=100;
  172. set global delayed_insert_timeout=100;
  173. set global delayed_queue_size=100;
  174. set global flush=1;
  175. set global flush_time=100;
  176. set insert_id=1;
  177. set interactive_timeout=100;
  178. set join_buffer_size=100;
  179. set last_insert_id=1;
  180. set global local_infile=1;
  181. set long_query_time=100;
  182. set low_priority_updates=1;
  183. set max_allowed_packet=100;
  184. set global max_binlog_cache_size=100;
  185. set global max_binlog_size=100;
  186. set global max_connect_errors=100;
  187. set global max_connections=100;
  188. set global max_delayed_threads=100;
  189. set max_heap_table_size=100;
  190. set max_join_size=100;
  191. set max_sort_length=100;
  192. set max_tmp_tables=100;
  193. set global max_user_connections=100;
  194. select @@max_user_connections;
  195. set global max_write_lock_count=100;
  196. set global myisam_max_extra_sort_file_size=100;
  197. select @@myisam_max_extra_sort_file_size;
  198. set global myisam_max_sort_file_size=100;
  199. set myisam_sort_buffer_size=100;
  200. set net_buffer_length=100;
  201. set net_read_timeout=100;
  202. set net_write_timeout=100;
  203. set global query_cache_limit=100;
  204. set global query_cache_size=100;
  205. set global query_cache_type=demand;
  206. set read_buffer_size=100;
  207. set read_rnd_buffer_size=100;
  208. set global rpl_recovery_rank=100;
  209. set global server_id=100;
  210. set global slow_launch_time=100;
  211. set sort_buffer_size=100;
  212. set sql_auto_is_null=1;
  213. select @@sql_auto_is_null;
  214. set @@sql_auto_is_null=0;
  215. select @@sql_auto_is_null;
  216. set sql_big_selects=1;
  217. set sql_big_tables=1;
  218. set sql_buffer_result=1;
  219. set sql_log_bin=1;
  220. set sql_log_off=1;
  221. set sql_log_update=1;
  222. set sql_low_priority_updates=1;
  223. set sql_max_join_size=200;
  224. select @@sql_max_join_size,@@max_join_size;
  225. set sql_quote_show_create=1;
  226. set sql_safe_updates=1;
  227. set sql_select_limit=1;
  228. set sql_warnings=1;
  229. set global table_cache=100;
  230. set storage_engine=myisam;
  231. set global thread_cache_size=100;
  232. set timestamp=1, timestamp=default;
  233. set tmp_table_size=100;
  234. set tx_isolation="READ-COMMITTED";
  235. set wait_timeout=100;
  236. set log_warnings=1;
  237. #
  238. # key buffer
  239. #
  240. create table t1 (a int not null auto_increment, primary key(a));
  241. create table t2 (a int not null auto_increment, primary key(a));
  242. insert into t1 values(null),(null),(null);
  243. insert into t2 values(null),(null),(null);
  244. set global key_buffer_size=100000;
  245. select @@key_buffer_size;
  246. select * from t1 where a=2;
  247. select * from t2 where a=3;
  248. check table t1,t2;
  249. select max(a) +1, max(a) +2 into @xx,@yy from t1;
  250. drop table t1,t2;
  251. #
  252. # error conditions
  253. #
  254. --error 1193
  255. select @@xxxxxxxxxx;
  256. select 1;
  257. --error 1238
  258. select @@session.key_buffer_size;
  259. --error 1229
  260. set ft_boolean_syntax = @@init_connect;
  261. --error 1231
  262. set global ft_boolean_syntax = @@init_connect;
  263. --error 1229
  264. set init_connect = NULL;
  265. set global init_connect = NULL;
  266. --error 1229
  267. set ft_boolean_syntax = @@init_connect;
  268. --error 1231
  269. set global ft_boolean_syntax = @@init_connect;
  270. # Bug#3754 SET GLOBAL myisam_max_sort_file_size doesn't work as
  271. # expected: check that there is no overflow when 64-bit unsigned
  272. # variables are set
  273. set global myisam_max_sort_file_size=4294967296;
  274. --replace_result 4294967296 MAX_FILE_SIZE 2146435072 MAX_FILE_SIZE
  275. show global variables like 'myisam_max_sort_file_size';
  276. set global myisam_max_sort_file_size=default;
  277. #
  278. # swap
  279. #
  280. select @@global.max_user_connections,@@local.max_join_size;
  281. set @svc=@@global.max_user_connections, @svj=@@local.max_join_size;
  282. select @@global.max_user_connections,@@local.max_join_size;
  283. set @@global.max_user_connections=111,@@local.max_join_size=222;
  284. select @@global.max_user_connections,@@local.max_join_size;
  285. set @@global.max_user_connections=@@local.max_join_size,@@local.max_join_size=@@global.max_user_connections;
  286. select @@global.max_user_connections,@@local.max_join_size;
  287. set @@global.max_user_connections=@svc, @@local.max_join_size=@svj;
  288. select @@global.max_user_connections,@@local.max_join_size;
  289. set @a=1, @b=2;
  290. set @a=@b, @b=@a;
  291. select @a, @b;
  292. #
  293. # Bug#2586:Disallow global/session/local as structured var. instance names
  294. #
  295. --error 1064
  296. set @@global.global.key_buffer_size= 1;
  297. --error 1064
  298. set GLOBAL global.key_buffer_size= 1;
  299. --error 1064
  300. SELECT @@global.global.key_buffer_size;
  301. --error 1064
  302. SELECT @@global.session.key_buffer_size;
  303. --error 1064
  304. SELECT @@global.local.key_buffer_size;
  305. # BUG#5135: cannot turn on log_warnings with SET in 4.1 (and 4.0)
  306. set @tstlw = @@log_warnings;
  307. show global variables like 'log_warnings';
  308. set global log_warnings = 0;
  309. show global variables like 'log_warnings';
  310. set global log_warnings = 42;
  311. show global variables like 'log_warnings';
  312. set global log_warnings = @tstlw;
  313. show global variables like 'log_warnings';
  314. #
  315. # BUG#4788 show create table provides incorrect statement
  316. #
  317. # What default width have numeric types?
  318. create table t1 (
  319.   c1 tinyint,
  320.   c2 smallint,
  321.   c3 mediumint,
  322.   c4 int,
  323.   c5 bigint);
  324. show create table t1;
  325. drop table t1;
  326. #
  327. # What types and widths have variables?
  328. set @arg00= 8, @arg01= 8.8, @arg02= 'a string';
  329. create table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3;
  330. show create table t1;
  331. drop table t1;
  332. #
  333. # Bug #6993: myisam_data_pointer_size
  334. # Wrong bug report, data pointer size must be restricted to 7,
  335. # setting to 8 will not work on all computers, myisamchk and
  336. # the server may see a wrong value, such as 0 or negative number
  337. # if 8 bytes is set.
  338. #
  339. SET GLOBAL MYISAM_DATA_POINTER_SIZE= 7;
  340. SHOW VARIABLES LIKE 'MYISAM_DATA_POINTER_SIZE';
  341. #
  342. # Bug #6958: negative arguments to integer options wrap around
  343. #
  344. SET GLOBAL table_cache=-1;
  345. SHOW VARIABLES LIKE 'table_cache';
  346. SET GLOBAL table_cache=DEFAULT;
  347. #
  348. # Bugs12363: character_set_results is nullable,
  349. # but value_ptr returns string "NULL"
  350. #
  351. set character_set_results=NULL;
  352. select ifnull(@@character_set_results,"really null");
  353. set names latin1;
  354. #
  355. # Bug #9613: @@have_innodb
  356. #
  357. --replace_column 1 #
  358. select @@have_innodb;
  359. #
  360. # Bug #13334: query_prealloc_size default less than minimum
  361. #
  362. set @test = @@query_prealloc_size;
  363. set @@query_prealloc_size = @test;
  364. select @@query_prealloc_size = @test;
  365. # End of 4.1 tests