File: gcol_stored_index.result

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 (39 lines) | stat: -rw-r--r-- 1,509 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
create table test_gcol_index (
i int not null primary key,
j int generated always as (100+mod(i,10)) stored unique
) engine = 'ndbcluster';
insert into test_gcol_index
values
(1, default),
(2, default),
(3, default),
(4, default),
(5, default),
(6, default),
(7, default),
(8, default),
(9, default);
select * from test_gcol_index where i = 4;
i	j
4	104
select * from test_gcol_index where j = 104;
i	j
4	104
explain select * from test_gcol_index where j = 104;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	test_gcol_index	p0,p1,p2,p3,p4,p5,p6,p7	eq_ref	j	j	5	const	1	100.00	NULL
Warnings:
Note	1003	/* select#1 */ select `test`.`test_gcol_index`.`i` AS `i`,`test`.`test_gcol_index`.`j` AS `j` from `test`.`test_gcol_index` where (`test`.`test_gcol_index`.`j` = 104)
select * from test_gcol_index where j > 106 order by j;
i	j
7	107
8	108
9	109
explain select * from test_gcol_index where j > 106;
id	select_type	table	partitions	type	possible_keys	key	key_len	ref	rows	filtered	Extra
1	SIMPLE	test_gcol_index	p0,p1,p2,p3,p4,p5,p6,p7	range	j	j	5	NULL	3	100.00	Using pushed condition (`test`.`test_gcol_index`.`j` > 106); Using MRR
Warnings:
Note	1003	/* select#1 */ select `test`.`test_gcol_index`.`i` AS `i`,`test`.`test_gcol_index`.`j` AS `j` from `test`.`test_gcol_index` where (`test`.`test_gcol_index`.`j` > 106)
insert into test_gcol_index values(13, default);
ERROR 23000: Duplicate entry '103' for key 'test_gcol_index.j'
drop table test_gcol_index;