File: setup.test

package info (click to toggle)
mariadb 1%3A11.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 772,520 kB
  • sloc: ansic: 2,414,714; cpp: 1,791,394; asm: 381,336; perl: 62,905; sh: 49,647; pascal: 40,897; java: 39,363; python: 20,791; yacc: 20,432; sql: 17,907; xml: 12,344; ruby: 8,544; cs: 6,542; makefile: 6,145; ada: 1,879; lex: 1,193; javascript: 996; objc: 80; tcl: 73; awk: 46; php: 22
file content (54 lines) | stat: -rw-r--r-- 1,635 bytes parent folder | download | duplicates (5)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# The include statement below is a temp one for tests that are yet to
#be ported to run with InnoDB,
#but needs to be kept for tests that would need MyISAM in future.
--source include/force_myisam_default.inc

if (`SELECT VERSION() LIKE '%embedded%'`)
{
   --skip This test cannot run with the embedded server.
}

--source suite/perfschema_stress/include/settings.inc

--disable_query_log
--disable_result_log

if (!$engine_type) {
  let $engine_type= $default_engine_type;
}
if ($engine_type == Falcon) {
  --source include/have_falcon.inc
}

--replace_result $engine_type <engine_type>
eval CREATE TABLE t1 (id INT PRIMARY KEY, b CHAR(100) DEFAULT 'initial value')
     ENGINE=$engine_type;

# Need something to start with
INSERT INTO t1(id) VALUES (1), (2), (3), (4), (5), (6), (7), (8);

# Bulk load the correct number of rows
while (`SELECT MAX(id) < $num_stress_rows FROM t1`)
{
   SELECT MAX(id) FROM t1 INTO @max;
--replace_result $num_stress_rows <num_stress_rows>
   eval INSERT INTO t1(id) SELECT id + @max FROM t1
        WHERE id + @max <= $num_stress_rows;
}

# Turn on some instruments

UPDATE performance_schema.setup_instruments SET TIMED = 'YES';

UPDATE performance_schema.setup_instruments SET ENABLED = 'NO';
UPDATE performance_schema.setup_instruments SET ENABLED = 'YES'
WHERE NAME IN ('wait/io/file/sql/FRM',
               'thread/sql/Connection',
               'wait/synch/cond/sql/COND_mdl',
               'wait/synch/rwlock/sql/LOCK_sys_init_connect',
               'wait/synch/mutex/sql/LOCK_mdl');

UPDATE performance_schema.setup_consumers SET ENABLED = 'YES';

--enable_result_log
--enable_query_log