~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/variables.test

  • Committer: Brian Aker
  • Date: 2010-12-25 00:28:49 UTC
  • mto: This revision was merged to the branch mainline in revision 2031.
  • Revision ID: brian@tangent.org-20101225002849-g73mg6ihulajis0o
First pass in refactoring of the name of my_decimal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#
9
9
# Bug #19263: variables.test doesn't clean up after itself (I/II -- save)
10
10
#
 
11
set @my_max_connect_errors        =@@global.max_connect_errors;
11
12
set @my_max_heap_table_size       =@@global.max_heap_table_size;
12
13
set @my_max_join_size             =@@global.max_join_size;
13
14
set @my_mysql_protocol_buffer_length =@@global.mysql_protocol_buffer_length;
172
173
set join_buffer_size=100;
173
174
set last_insert_id=1;
174
175
set max_allowed_packet=100;
 
176
set global max_connect_errors=100;
175
177
set max_heap_table_size=100;
176
178
set max_join_size=100;
177
179
set max_sort_length=100;
465
467
#
466
468
--error ER_UNKNOWN_SYSTEM_VARIABLE
467
469
set global flush_time                =@my_flush_time;
 
470
set global max_connect_errors        =@my_max_connect_errors;
468
471
set global max_heap_table_size       =@my_max_heap_table_size;
469
472
set global max_join_size             =@my_max_join_size;
470
473
# No default
482
485
set GLOBAL bulk_insert_buffer_size=DEFAULT;
483
486
set GLOBAL join_buffer_size=DEFAULT;
484
487
set GLOBAL max_allowed_packet=DEFAULT;
 
488
set GLOBAL max_connect_errors=DEFAULT;
485
489
set GLOBAL max_heap_table_size=DEFAULT;
486
490
set GLOBAL max_join_size=DEFAULT;
487
491
set GLOBAL max_sort_length=DEFAULT;