~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/sys_vars/r/innodb_buffer_pool_dump_at_shutdown_basic.result

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET @orig = @@global.innodb_buffer_pool_dump_at_shutdown;
 
2
SELECT @orig;
 
3
@orig
 
4
0
 
5
SET GLOBAL innodb_buffer_pool_dump_at_shutdown = OFF;
 
6
SELECT @@global.innodb_buffer_pool_dump_at_shutdown;
 
7
@@global.innodb_buffer_pool_dump_at_shutdown
 
8
0
 
9
SET GLOBAL innodb_buffer_pool_dump_at_shutdown = ON;
 
10
SELECT @@global.innodb_buffer_pool_dump_at_shutdown;
 
11
@@global.innodb_buffer_pool_dump_at_shutdown
 
12
1
 
13
SET GLOBAL innodb_buffer_pool_dump_at_shutdown = 12.34;
 
14
Got one of the listed errors
 
15
SET GLOBAL innodb_buffer_pool_dump_at_shutdown = "string";
 
16
Got one of the listed errors
 
17
SET GLOBAL innodb_buffer_pool_dump_at_shutdown = 5;
 
18
Got one of the listed errors