~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • 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:
1
1
drop table if exists t1,t2;
 
2
set @my_max_connect_errors        =@@global.max_connect_errors;
2
3
set @my_max_heap_table_size       =@@global.max_heap_table_size;
3
4
set @my_max_join_size             =@@global.max_join_size;
4
5
set @my_mysql_protocol_buffer_length =@@global.mysql_protocol_buffer_length;
285
286
set max_allowed_packet=100;
286
287
Warnings:
287
288
Error   1292    Truncated incorrect max_allowed_packet value: '100'
 
289
set global max_connect_errors=100;
288
290
set max_heap_table_size=100;
289
291
Warnings:
290
292
Error   1292    Truncated incorrect max_heap_table_size value: '100'
531
533
End of 5.0 tests
532
534
set global flush_time                =@my_flush_time;
533
535
ERROR HY000: Unknown system variable 'flush_time'
 
536
set global max_connect_errors        =@my_max_connect_errors;
534
537
set global max_heap_table_size       =@my_max_heap_table_size;
535
538
set global max_join_size             =@my_max_join_size;
536
539
set global max_write_lock_count      =default;
549
552
set GLOBAL bulk_insert_buffer_size=DEFAULT;
550
553
set GLOBAL join_buffer_size=DEFAULT;
551
554
set GLOBAL max_allowed_packet=DEFAULT;
 
555
set GLOBAL max_connect_errors=DEFAULT;
552
556
set GLOBAL max_heap_table_size=DEFAULT;
553
557
set GLOBAL max_join_size=DEFAULT;
554
558
set GLOBAL max_sort_length=DEFAULT;