~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Brian Aker
  • Date: 2009-08-03 15:50:04 UTC
  • mfrom: (1106.3.2 heap)
  • Revision ID: brian@gaz-20090803155004-tq6ec51i68ay1aye
Merge of Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
435
435
MYISAM_MAX_SORT_FILE_SIZE       MAX_FILE_SIZE
436
436
set global myisam_max_sort_file_size=default;
437
437
set @@global.global.key_buffer_size= 1;
438
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'key_buffer_size= 1' at line 1
 
438
ERROR HY000: Unknown system variable 'global'
439
439
set GLOBAL global.key_buffer_size= 1;
440
 
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'key_buffer_size= 1' at line 1
 
440
ERROR HY000: Unknown system variable 'global'
441
441
SELECT @@global.global.key_buffer_size;
442
442
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near 'key_buffer_size' at line 1
443
443
SELECT @@global.session.key_buffer_size;