summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_zip/r/wl6560.result
blob: bf46d8a41a028cc75a31350f177ccd41634de54d (plain)
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
set global innodb_file_per_table = off;
# files in MYSQL_DATA_DIR
ibtmp1
select @@global.innodb_file_per_table;
@@global.innodb_file_per_table
0
create temporary table t1 (i int, f float, c char(100)) engine=innodb;
insert into t1 values (100, 1.1, 'pune');
insert into t1 values (99, 1.2, 'mumbai');
insert into t1 values (98, 1.3, 'jaipur');
insert into t1 values (97, 1.4, 'delhi');
insert into t1 values (96, 1.5, 'ahmedabad');
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
96	1.5	ahmedabad
select * from t1 where i = 98;
i	f	c
98	1.3	jaipur
select * from t1 where i < 100;
i	f	c
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
96	1.5	ahmedabad
explain select * from t1 where f > 1.29999;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	t1	NULL	ALL	NULL	NULL	NULL	NULL	5	33.33	Using where
Warnings:
Note	1003	/* select#1 */ select `test`.`t1`.`i` AS `i`,`test`.`t1`.`f` AS `f`,`test`.`t1`.`c` AS `c` from `test`.`t1` where (`test`.`t1`.`f` > 1.29999)
alter table t1 add index sec_index(f);
explain select * from t1 where f > 1.29999;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	t1	NULL	ALL	sec_index	NULL	NULL	NULL	5	60.00	Using where
Warnings:
Note	1003	/* select#1 */ select `test`.`t1`.`i` AS `i`,`test`.`t1`.`f` AS `f`,`test`.`t1`.`c` AS `c` from `test`.`t1` where (`test`.`t1`.`f` > 1.29999)
select * from t1 where f > 1.29999;
i	f	c
98	1.3	jaipur
97	1.4	delhi
96	1.5	ahmedabad
explain select * from t1 where i = 100;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	t1	NULL	ALL	NULL	NULL	NULL	NULL	5	20.00	Using where
Warnings:
Note	1003	/* select#1 */ select `test`.`t1`.`i` AS `i`,`test`.`t1`.`f` AS `f`,`test`.`t1`.`c` AS `c` from `test`.`t1` where (`test`.`t1`.`i` = 100)
alter table t1 add unique index pri_index(i);
explain select * from t1 where i = 100;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	t1	NULL	const	pri_index	pri_index	5	const	1	100.00	NULL
Warnings:
Note	1003	/* select#1 */ select '100' AS `i`,'1.1' AS `f`,'pune' AS `c` from `test`.`t1` where 1
select * from t1 where i = 100;
i	f	c
100	1.1	pune
delete from t1 where i < 97;
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
insert into t1 values (96, 1.5, 'kolkata');
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
96	1.5	kolkata
update t1 set f = 1.44 where c = 'delhi';
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.44	delhi
96	1.5	kolkata
truncate table t1;
insert into t1 values (100, 1.1, 'pune');
insert into t1 values (99, 1.2, 'mumbai');
insert into t1 values (98, 1.3, 'jaipur');
insert into t1 values (97, 1.4, 'delhi');
insert into t1 values (96, 1.5, 'ahmedabad');
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
96	1.5	ahmedabad
alter table t1 discard tablespace;
ERROR HY000: Cannot DISCARD/IMPORT tablespace associated with temporary table
alter table t1 import tablespace;
ERROR HY000: Cannot DISCARD/IMPORT tablespace associated with temporary table
drop table t1;
#files in MYSQL_TMP_DIR
set global innodb_file_per_table = 1;
select @@global.innodb_file_per_table;
@@global.innodb_file_per_table
1
create temporary table t1
(i int, f float, c char(100)) engine = innodb key_block_size = 4;
show create table t1;
Table	Create Table
t1	CREATE TEMPORARY TABLE `t1` (
  `i` int(11) DEFAULT NULL,
  `f` float DEFAULT NULL,
  `c` char(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 KEY_BLOCK_SIZE=4
#files in MYSQL_TMP_DIR
#sql<temporary>.ibd
insert into t1 values (100, 1.1, 'pune');
insert into t1 values (99, 1.2, 'mumbai');
insert into t1 values (98, 1.3, 'jaipur');
insert into t1 values (97, 1.4, 'delhi');
insert into t1 values (96, 1.5, 'ahmedabad');
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
96	1.5	ahmedabad
select * from t1 where i = 98;
i	f	c
98	1.3	jaipur
select * from t1 where i < 100;
i	f	c
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
96	1.5	ahmedabad
explain select * from t1 where f > 1.29999;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	t1	NULL	ALL	NULL	NULL	NULL	NULL	5	33.33	Using where
Warnings:
Note	1003	/* select#1 */ select `test`.`t1`.`i` AS `i`,`test`.`t1`.`f` AS `f`,`test`.`t1`.`c` AS `c` from `test`.`t1` where (`test`.`t1`.`f` > 1.29999)
alter table t1 add index sec_index(f);
explain select * from t1 where f > 1.29999;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	t1	NULL	ALL	sec_index	NULL	NULL	NULL	5	60.00	Using where
Warnings:
Note	1003	/* select#1 */ select `test`.`t1`.`i` AS `i`,`test`.`t1`.`f` AS `f`,`test`.`t1`.`c` AS `c` from `test`.`t1` where (`test`.`t1`.`f` > 1.29999)
select * from t1 where f > 1.29999;
i	f	c
98	1.3	jaipur
97	1.4	delhi
96	1.5	ahmedabad
explain select * from t1 where i = 100;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	t1	NULL	ALL	NULL	NULL	NULL	NULL	5	20.00	Using where
Warnings:
Note	1003	/* select#1 */ select `test`.`t1`.`i` AS `i`,`test`.`t1`.`f` AS `f`,`test`.`t1`.`c` AS `c` from `test`.`t1` where (`test`.`t1`.`i` = 100)
alter table t1 add unique index pri_index(i);
explain select * from t1 where i = 100;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	t1	NULL	const	pri_index	pri_index	5	const	1	100.00	NULL
Warnings:
Note	1003	/* select#1 */ select '100' AS `i`,'1.1' AS `f`,'pune' AS `c` from `test`.`t1` where 1
select * from t1 where i = 100;
i	f	c
100	1.1	pune
delete from t1 where i < 97;
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
insert into t1 values (96, 1.5, 'kolkata');
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
96	1.5	kolkata
update t1 set f = 1.44 where c = 'delhi';
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.44	delhi
96	1.5	kolkata
truncate table t1;
insert into t1 values (100, 1.1, 'pune');
insert into t1 values (99, 1.2, 'mumbai');
insert into t1 values (98, 1.3, 'jaipur');
insert into t1 values (97, 1.4, 'delhi');
insert into t1 values (96, 1.5, 'ahmedabad');
select * from t1;
i	f	c
100	1.1	pune
99	1.2	mumbai
98	1.3	jaipur
97	1.4	delhi
96	1.5	ahmedabad
alter table t1 discard tablespace;
ERROR HY000: Cannot DISCARD/IMPORT tablespace associated with temporary table
drop table t1;
set global innodb_file_per_table = off;
create temporary table t1
(keyc int, c1 char(100), c2 char(100),
primary key(keyc)) engine = innodb;
CREATE PROCEDURE populate_t1()
BEGIN
DECLARE i INT DEFAULT 1;
while (i <= 20000) DO
insert into t1 values (i, 'a', 'b');
SET i = i + 1;
END WHILE;
END|
set autocommit=0;
select count(*) from t1;
count(*)
0
call populate_t1();
select count(*) from t1;
count(*)
20000
select * from t1 limit 10;
keyc	c1	c2
1	a	b
2	a	b
3	a	b
4	a	b
5	a	b
6	a	b
7	a	b
8	a	b
9	a	b
10	a	b
set autocommit=1;
truncate table t1;
select count(*) from t1;
count(*)
0
drop procedure populate_t1;
drop table t1;
create temporary table t1 (keyc int, c1 char(100), c2 char(100)) engine = innodb;
insert into t1 values (1, 'c', 'b');
select * from t1;
keyc	c1	c2
1	c	b
# restart
# files in MYSQL_DATA_DIR
ibtmp1
use test;
select * from t1;
ERROR 42S02: Table 'test.t1' doesn't exist
"testing temp-table creation in --innodb_read_only mode"
# restart: --innodb-read-only
use test;
show tables;
Tables_in_test
create temporary table t1 (keyc int, c1 char(100), c2 char(100)) engine = innodb;
ERROR HY000: InnoDB is in read only mode.
"testing system and temp tablespace name conflict"
"restarting server in normal mode"
# restart
show tables;
Tables_in_test
create temporary table t1 (keyc int, c1 char(100), c2 char(100)) engine = innodb;
drop table t1;
# test condition of full-temp-tablespace
# restart: --innodb_temp_data_file_path=ibtmp1:12M
create temporary table t1
(keyc int, c1 char(100), c2 char(100),
primary key(keyc)) engine = innodb;
CREATE PROCEDURE populate_t1()
BEGIN
DECLARE i INT DEFAULT 1;
while (i <= 20000) DO
insert into t1 values (i, 'a', 'b');
SET i = i + 1;
END WHILE;
END|
set autocommit=0;
select count(*) from t1;
count(*)
0
call populate_t1();
ERROR HY000: The table 't1' is full
drop procedure populate_t1;
drop table t1;
set innodb_strict_mode = off;
set global innodb_file_per_table = 0;
set global innodb_file_format = 'Antelope';
create temporary table t (
i int)
engine = innodb row_format = compressed;
show warnings;
Level	Code	Message
Warning	NUMBER	InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_per_table.
Warning	NUMBER	InnoDB: assuming ROW_FORMAT=DYNAMIC.
drop table t;
create temporary table t (
i int)
engine = innodb row_format = compressed key_block_size = 8;
show warnings;
Level	Code	Message
Warning	NUMBER	InnoDB: KEY_BLOCK_SIZE requires innodb_file_per_table.
Warning	NUMBER	InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
Warning	NUMBER	InnoDB: ignoring KEY_BLOCK_SIZE=NUMBER.
Warning	NUMBER	InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_per_table.
Warning	NUMBER	InnoDB: assuming ROW_FORMAT=DYNAMIC.
drop table t;
set global innodb_file_per_table = 1;
create temporary table t (
i int)
engine = innodb row_format = compressed key_block_size = 8;
show warnings;
Level	Code	Message
Warning	NUMBER	InnoDB: KEY_BLOCK_SIZE requires innodb_file_format > Antelope.
Warning	NUMBER	InnoDB: ignoring KEY_BLOCK_SIZE=NUMBER.
Warning	NUMBER	InnoDB: ROW_FORMAT=COMPRESSED requires innodb_file_format > Antelope.
Warning	NUMBER	InnoDB: assuming ROW_FORMAT=DYNAMIC.
drop table t;
create temporary table t (
i int)
engine = innodb row_format = dynamic;
show warnings;
Level	Code	Message
#files in MYSQL_TMP_DIR
drop table t;
set innodb_strict_mode = on;
create temporary table t (
i int)
engine = innodb row_format = dynamic;
drop table t;
set global innodb_file_format = 'Barracuda';
set innodb_strict_mode = off;
create temporary table t (
i int)
engine = innodb row_format = compressed key_block_size = 8;
set innodb_strict_mode = default;
#files in MYSQL_TMP_DIR
#sql<temporary>.ibd
drop table t;
create temporary table t (
i int)
engine = innodb row_format = compressed;
show warnings;
Level	Code	Message
#files in MYSQL_TMP_DIR
#sql<temporary>.ibd
drop table t;
create temporary table t (
i int)
engine = innodb row_format = dynamic;
show warnings;
Level	Code	Message
#files in MYSQL_TMP_DIR
drop table t;
set innodb_strict_mode = on;
create temporary table t (
i int)
engine = innodb row_format = dynamic;
show warnings;
Level	Code	Message
drop table t;
set innodb_strict_mode = off;
#files in MYSQL_TMP_DIR
create temporary table t (
i int)
engine = innodb row_format = dynamic key_block_size = 4;
show warnings;
Level	Code	Message
Warning	NUMBER	InnoDB: ignoring KEY_BLOCK_SIZE=NUMBER unless ROW_FORMAT=COMPRESSED.
#files in MYSQL_TMP_DIR
#sql<temporary>.ibd
drop table t;
create temporary table t (
i int)
engine = innodb row_format = compact;
show warnings;
Level	Code	Message
#files in MYSQL_TMP_DIR
drop table t;
create temporary table t (
i int)
engine = innodb key_block_size = 4;
show warnings;
Level	Code	Message
#files in MYSQL_TMP_DIR
#sql<temporary>.ibd
drop table t;
"testing temp tablespace non-support for raw device"
"testing temp tablespace non-support for raw device"
# restart
show tables;
Tables_in_test
create temporary table t1 (
keyc int, c1 char(100), c2 char(100)
) engine = innodb;
drop table t1;
"try starting server with temp-tablespace size < min. threshold"
"try starting server with sys-tablespace size < min. threshold"
# restart
show tables;
Tables_in_test
create temporary table t1 (
keyc int, c1 char(100), c2 char(100)
) engine = innodb;
drop table t1;
"try starting server with no file specified for temp-tablespace"
# restart
show tables;
Tables_in_test
create temporary table t1 (
keyc int, c1 char(100), c2 char(100)
) engine = innodb;
drop table t1;