File: ps_w_max_indexes_64.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 (176 lines) | stat: -rw-r--r-- 5,671 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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
--source include/have_max_indexes_64.inc

###################### ps_general.test #######################
#                                                            #
#   basic and miscellaneous tests for prepared statements    #
#                                                            #
##############################################################

let $type= 'MYISAM' ;
# create the tables (t1 and t9) used in many tests
--source include/ps_create.inc
# insert data into these tables
--source include/ps_renew.inc

PREPARE stmt1 FROM ' EXPLAIN SELECT a FROM t1 ORDER BY b ';

# PS protocol gives slightly different metadata
--disable_ps_protocol
--enable_metadata
EXECUTE stmt1;
--disable_metadata
SET @arg00=1 ;
PREPARE stmt1 FROM ' EXPLAIN SELECT a FROM t1 WHERE a > ? ORDER BY b ';
--enable_metadata
EXECUTE stmt1 USING @arg00;
--disable_metadata
--enable_ps_protocol

DROP TABLE t1, t9;

###############################################
#                                             #
#  Prepared Statements test on MYISAM tables  #
#                                             #
###############################################

let $type= 'MYISAM' ;
# create the tables (t1 and t9) used in many tests
--source include/ps_create.inc
# insert data into these tables
--source include/ps_renew.inc

--source include/ps_query_explain_select.inc

DROP TABLE t1, t9;

###############################################
#                                             #
#  Prepared Statements test on InnoDB tables  #
#                                             #
###############################################

let $type= 'InnoDB' ;
-- source include/ps_create.inc
-- source include/ps_renew.inc

--source include/ps_query_explain_select.inc

DROP TABLE t1, t9;

###############################################
#                                             #
#   Prepared Statements test on HEAP tables   #
#                                             #
###############################################

let $type= 'HEAP' ;
eval CREATE TABLE t1
(
  a INT, b VARCHAR(30),
  PRIMARY KEY(a)
) ENGINE = $type ;

# The used table type doesn't support BLOB/TEXT columns.
# (The server would send error 1163  .)
# So we use char(100) instead.
eval CREATE TABLE t9
(
  c1  tinYINT, c2  SMALLINT, c3  MEDIUMINT, c4  INT,
  c5  INTEGER, c6  BIGINT, c7  FLOAT, c8  DOUBLE,
  c9  DOUBLE PRECISION, c10 REAL, c11 DECIMAL(7, 4), c12 NUMERIC(8, 4),
  c13 DATE, c14 DATETIME, c15 TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
  ON UPDATE CURRENT_TIMESTAMP, c16 TIME,
  c17 YEAR, c18 TINYINT, c19 BOOL, c20 CHAR,
  c21 CHAR(10), c22 VARCHAR(30), c23 VARCHAR(100), c24 VARCHAR(100),
  c25 VARCHAR(100), c26 VARCHAR(100), c27 VARCHAR(100), c28 VARCHAR(100),
  c29 VARCHAR(100), c30 VARCHAR(100), c31 ENUM('one', 'two', 'three'),
  c32 SET('monday', 'tuesday', 'wednesday'),
  PRIMARY KEY(c1)
) ENGINE = $type ;

# insert data into these tables
--source include/ps_renew.inc
--source include/ps_query_explain_select.inc

DROP TABLE t1, t9;

###############################################
#                                             #
#  Prepared Statements test on MERGE tables   #
#                                             #
###############################################

#    
# NOTE: PLEASE SEE ps_1general.test (bottom) 
#       BEFORE ADDING NEW TEST CASES HERE !!!

--disable_warnings
DROP TABLE IF EXISTS t1, t1_1, t1_2, t9, t9_1, t9_2;
--enable_warnings
let $type= 'MYISAM' ;
-- source include/ps_create.inc
RENAME TABLE t1 TO t1_1, t9 TO t9_1 ;
-- source include/ps_create.inc
RENAME TABLE t1 TO t1_2, t9 TO t9_2 ;

CREATE TABLE t1
(
  a INT, b VARCHAR(30),
  PRIMARY KEY(a)
) ENGINE = MERGE UNION=(t1_1,t1_2)
INSERT_METHOD=FIRST;

CREATE TABLE t9
(
  c1  TINYINT, c2  SMALLINT, c3  MEDIUMINT, c4  INT,
  c5  INTEGER, c6  BIGINT, c7  FLOAT, c8  DOUBLE,
  c9  DOUBLE PRECISION, c10 REAL, c11 DECIMAL(7, 4), c12 NUMERIC(8, 4),
  c13 DATE, c14 DATETIME, c15 TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, c16 TIME,
  c17 YEAR, c18 TINYINT, c19 BOOL, c20 CHAR,
  c21 CHAR(10), c22 VARCHAR(30), c23 TINYBLOB, c24 TINYTEXT,
  c25 BLOB, c26 TEXT, c27 MEDIUMBLOB, c28 MEDIUMTEXT,
  c29 LONGBLOB, c30 LONGTEXT, c31 ENUM('one', 'two', 'three'),
  c32 SET('monday', 'tuesday', 'wednesday'),
  PRIMARY KEY(c1)
)  ENGINE = MERGE UNION=(t9_1,t9_2)
INSERT_METHOD=FIRST;
-- source include/ps_renew.inc

-- source include/ps_query.inc
-- source include/ps_modify.inc
# no test of ps_modify1, because insert .. select 
# is not allowed on MERGE tables
# -- source include/ps_modify1.inc
-- source include/ps_conv.inc

# Lets's try the same tests with INSERT_METHOD=LAST
DROP TABLE t1, t9 ;
CREATE TABLE t1
(
  a int, b varchar(30),
  primary key(a)
) ENGINE = MERGE UNION=(t1_1,t1_2)
INSERT_METHOD=LAST;
CREATE TABLE t9
(
  c1  TINYINT, c2  SMALLINT, c3  MEDIUMINT, c4  INT,
  c5  INTEGER, c6  BIGINT, c7  FLOAT, c8  DOUBLE,
  c9  DOUBLE PRECISION, c10 REAL, c11 DECIMAL(7, 4), c12 NUMERIC(8, 4),
  c13 DATE, c14 DATETIME, c15 TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, c16 TIME,
  c17 YEAR, c18 TINYINT, c19 BOOL, c20 CHAR,
  c21 CHAR(10), c22 VARCHAR(30), c23 TINYBLOB, c24 TINYTEXT,
  c25 BLOB, c26 TEXT, c27 MEDIUMBLOB, c28 MEDIUMTEXT,
  c29 LONGBLOB, c30 LONGTEXT, c31 ENUM('one', 'two', 'three'),
  c32 SET('monday', 'tuesday', 'wednesday'),
  PRIMARY KEY(c1)
)  ENGINE = MERGE UNION=(t9_1,t9_2)
INSERT_METHOD=LAST;
-- source include/ps_renew.inc
-- source include/ps_query_explain_select.inc
-- source include/ps_modify.inc
-- source include/ps_conv.inc

DROP TABLE t1, t1_1, t1_2, t9_1, t9_2, t9;

--echo "End of tests"