~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
#
2
# Test the --thread-handler=no-threads option
3
#
4
select 1+1;
5
select 1+2;
6
SHOW GLOBAL VARIABLES LIKE 'thread_handling';
7
8
#
9
# Bug #30651	Problems with thread_handling system variable
10
#
11
12
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
13
select @@session.thread_handling;
14
15
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
16
set GLOBAL thread_handling='one-thread';