File: default_row_format_tablespace.test

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (29 lines) | stat: -rw-r--r-- 1,153 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# **************************************************************
# wl8307 : Check Default_row_format functionality
# case 1; Check with no tablespace (file_per_table=1)
# case 2: Check with General tablespace
# case 3: Check with innodb_system tablespace
# case 4: Check with innodb_file_per_table=OFF
# Modifying Dynamic to Compact to Dynamic to Redundant to
# compressed to Dynamic
# Modify table Dynamic to Compact to Compressed to Dynamic
# **************************************************************
# InnoDB does not support compressed tables for page sizes=32k,64k
# Also FILE_BLOCK_SIZE=8k and KEY_BLOCK_SIZEr=8
--source include/have_innodb_max_16k.inc

# Check without any tablespace is set
--let tablespace=
--source ../include/default_row_format_tablespace.inc

# Check with tablespace is set, with and without Key_block_size
let tablespace = tblsp;
--source ../include/default_row_format_tablespace.inc

# Check with innodb_system is set
let tablespace = innodb_system;
--source ../include/default_row_format_tablespace.inc

# Check with innodb_file_per_table=0
let tablespace = OFF;
--source ../include/default_row_format_tablespace.inc