~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/tests/t/config_file_format.test

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SHOW VARIABLES LIKE 'innodb_file_format';
2
 
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
3
 
SET GLOBAL innodb_file_format='antelope';
4
 
SHOW VARIABLES LIKE 'innodb_file_format';
5
 
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
6
 
SET GLOBAL innodb_file_format='barracuda';
7
 
SHOW VARIABLES LIKE 'innodb_file_format';
8
 
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
9
 
--error ER_WRONG_VALUE_FOR_VAR
10
 
SET GLOBAL innodb_file_format='broccolini';
11
 
SHOW VARIABLES LIKE 'innodb_file_format';
12
 
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
13
 
SET GLOBAL innodb_file_format='Barracuda';