~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:48:31 UTC
  • mfrom: (1106.4.3 no-multi-keycache)
  • mto: This revision was merged to the branch mainline in revision 1108.
  • Revision ID: brian@gaz-20090803154831-fngxv9aby0rjkyn9
Merge in removal of multi-keycache code.

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;