~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Eric Day
  • Date: 2009-10-31 21:53:33 UTC
  • mfrom: (1200 staging)
  • mto: This revision was merged to the branch mainline in revision 1202.
  • Revision ID: eday@oddments.org-20091031215333-j94bjoanwmi68p6f
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
523
523
ERROR HY000: Variable 'warning_count' is a read only variable
524
524
set @@global.error_count=1;
525
525
ERROR HY000: Variable 'error_count' is a read only variable
526
 
set @@max_heap_table_size= 4294967296;
527
 
select @@max_heap_table_size > 0;
528
 
@@max_heap_table_size > 0
529
 
1
530
 
set global max_heap_table_size= 4294967296;
531
 
select @@max_heap_table_size > 0;
532
 
@@max_heap_table_size > 0
533
 
1
534
 
set @@max_heap_table_size= 4294967296;
535
 
select @@max_heap_table_size > 0;
536
 
@@max_heap_table_size > 0
537
 
1
538
526
select @@character_set_system;
539
527
ERROR HY000: Unknown system variable 'character_set_system'
540
528
set global character_set_system = utf8;