~drizzle-trunk/drizzle/development

1283.35.64 by Stewart Smith
add file_format configuration option to embedded_innodb. Also add a simple test for changing it
1
SHOW VARIABLES LIKE 'innodb_file_format';
2
Variable_name	Value
3
innodb_file_format	Barracuda
1787.5.11 by Stewart Smith
rename remaining things from embedded_innodb/innodb to HailDB. The only things left are now the plugin name and what name the engine appears under (so it's still CREATE TABLE.. ENGINE=INNODB and options are --innodb.foo)
4
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
1283.35.64 by Stewart Smith
add file_format configuration option to embedded_innodb. Also add a simple test for changing it
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
1787.5.11 by Stewart Smith
rename remaining things from embedded_innodb/innodb to HailDB. The only things left are now the plugin name and what name the engine appears under (so it's still CREATE TABLE.. ENGINE=INNODB and options are --innodb.foo)
11
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
1283.35.64 by Stewart Smith
add file_format configuration option to embedded_innodb. Also add a simple test for changing it
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
1787.5.11 by Stewart Smith
rename remaining things from embedded_innodb/innodb to HailDB. The only things left are now the plugin name and what name the engine appears under (so it's still CREATE TABLE.. ENGINE=INNODB and options are --innodb.foo)
18
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
1283.35.64 by Stewart Smith
add file_format configuration option to embedded_innodb. Also add a simple test for changing it
19
NAME	TYPE	VALUE
20
file_format	TEXT	Barracuda
21
SET GLOBAL innodb_file_format='broccolini';
1945.1.3 by Monty Taylor
Updates to haildb and auth_http.
22
ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'broccolini'
1283.35.64 by Stewart Smith
add file_format configuration option to embedded_innodb. Also add a simple test for changing it
23
SHOW VARIABLES LIKE 'innodb_file_format';
24
Variable_name	Value
25
innodb_file_format	barracuda
1787.5.11 by Stewart Smith
rename remaining things from embedded_innodb/innodb to HailDB. The only things left are now the plugin name and what name the engine appears under (so it's still CREATE TABLE.. ENGINE=INNODB and options are --innodb.foo)
26
SELECT * FROM DATA_DICTIONARY.HAILDB_CONFIGURATION WHERE NAME='file_format';
1283.35.64 by Stewart Smith
add file_format configuration option to embedded_innodb. Also add a simple test for changing it
27
NAME	TYPE	VALUE
28
file_format	TEXT	Barracuda
2039.4.1 by Lee Bieber
fix tests that are failing with --repeat=2
29
SET GLOBAL innodb_file_format='Barracuda';