~fallenpegasus/drizzle/logcsv

« back to all changes in this revision

Viewing changes to plugin/innobase/mysql-test/innodb_bug47167.test

  • Committer: lbieber at stabletransit
  • Date: 2010-10-13 16:20:08 UTC
  • mfrom: (1843.1.3 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101013162008-qi2e6k5yvfm16964
Merge Stewart - update innobase plugin to be based on innodb_plugin 1.0.6
Merge Monty - more valgrind cleanup
Merge Monty - Moved libdrizzle api listings from doxygen to sphinx

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This is the unit test for bug *47167.
 
2
# It tests setting the global variable
 
3
# "innodb_file_format_check" with a
 
4
# user-Defined Variable.
 
5
 
 
6
--source include/have_innodb.inc
 
7
 
 
8
# Save the value (Antelope) in 'innodb_file_format_check' to
 
9
# 'old_innodb_file_format_check'
 
10
set @old_innodb_file_format_check=@@innodb_file_format_check;
 
11
 
 
12
# @old_innodb_file_format_check shall have the value of 'Antelope'
 
13
select @old_innodb_file_format_check;
 
14
 
 
15
# Reset the value in 'innodb_file_format_check' to 'Barracuda'
 
16
set global innodb_file_format_check = Barracuda;
 
17
 
 
18
select @@innodb_file_format_check;
 
19
 
 
20
# Set 'innodb_file_format_check' to its default value, which
 
21
# is the latest file format supported in the current release.
 
22
set global innodb_file_format_check = DEFAULT;
 
23
 
 
24
select @@innodb_file_format_check;
 
25
 
 
26
# Put the saved value back to 'innodb_file_format_check'
 
27
set global innodb_file_format_check = @old_innodb_file_format_check;
 
28
 
 
29
# Check whether 'innodb_file_format_check' get its original value.
 
30
select @@innodb_file_format_check;
 
31
 
 
32
# Following are negative tests, all should fail.
 
33
--disable_warnings
 
34
--error ER_WRONG_ARGUMENTS
 
35
set global innodb_file_format_check = cheetah;
 
36
 
 
37
--error ER_WRONG_ARGUMENTS
 
38
set global innodb_file_format_check = Bear;
 
39
 
 
40
--error ER_WRONG_ARGUMENTS
 
41
set global innodb_file_format_check = on;
 
42
 
 
43
--error ER_WRONG_ARGUMENTS
 
44
set global innodb_file_format_check = off;
 
45
--enable_warnings