~ubuntu-branches/ubuntu/saucy/drizzle/saucy

« back to all changes in this revision

Viewing changes to plugin/haildb/tests/r/config_file_format.result

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.2.11) (2.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20120619104649-9ij634mxm4x8pp4l
Tags: 1:7.1.36-stable-1ubuntu1
* Merge from Debian unstable. (LP: #987575)
  Remaining changes:
  - Added upstart script.
* debian/drizzle.upstart: dropped logger since upstart logs job
  output now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SHOW VARIABLES LIKE 'innodb_file_format';
2
 
Variable_name   Value
3
 
innodb_file_format      Barracuda
4
 
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
5
 
NAME    TYPE    VALUE
6
 
file_format     TEXT    Barracuda
7
 
SET GLOBAL innodb_file_format='antelope';
8
 
SHOW VARIABLES LIKE 'innodb_file_format';
9
 
Variable_name   Value
10
 
innodb_file_format      antelope
11
 
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
12
 
NAME    TYPE    VALUE
13
 
file_format     TEXT    Antelope
14
 
SET GLOBAL innodb_file_format='barracuda';
15
 
SHOW VARIABLES LIKE 'innodb_file_format';
16
 
Variable_name   Value
17
 
innodb_file_format      barracuda
18
 
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
19
 
NAME    TYPE    VALUE
20
 
file_format     TEXT    Barracuda
21
 
SET GLOBAL innodb_file_format='broccolini';
22
 
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'broccolini'
23
 
SHOW VARIABLES LIKE 'innodb_file_format';
24
 
Variable_name   Value
25
 
innodb_file_format      barracuda
26
 
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
27
 
NAME    TYPE    VALUE
28
 
file_format     TEXT    Barracuda
29
 
SET GLOBAL innodb_file_format='Barracuda';