summaryrefslogtreecommitdiff
path: root/mysql-test/main/xyz_blob.result
blob: 99910225c16da8d5d051b97de929e4a64b5aef7a (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
create table t1(a blob unique , b blob , c blob, unique(b,c));
insert into t1 values(1,1,1);
insert into t1 values(2,2,2),(3,3,3),(4,4,4),(5,5,5);
insert into t1 select a+5, b+5, c+5 from t1;
insert into t1 select a+10, b+10, c+10 from t1;
insert into t1 select a+20, b+20, c+20 from t1;
insert into t1 select a+40, b+40, c+40 from t1;
explain select * from t1 where a="1";;
id	1
select_type	SIMPLE
table	NULL
type	NULL
possible_keys	NULL
key	NULL
key_len	NULL
ref	NULL
rows	NULL
Extra	Impossible WHERE noticed after reading const tables
explain select * from t1 where b="34" and c = "34";;
id	1
select_type	SIMPLE
table	t1
type	ALL
possible_keys	b
key	NULL
key_len	NULL
ref	NULL
rows	80
Extra	Using where
explain select * from t1 where c="34" and b="34";;
id	1
select_type	SIMPLE
table	t1
type	ALL
possible_keys	b
key	NULL
key_len	NULL
ref	NULL
rows	80
Extra	Using where
explain select * from t1 where c="34";;
id	1
select_type	SIMPLE
table	t1
type	ALL
possible_keys	NULL
key	NULL
key_len	NULL
ref	NULL
rows	80
Extra	Using where
explain select * from t1 where b="34";;
id	1
select_type	SIMPLE
table	NULL
type	NULL
possible_keys	NULL
key	NULL
key_len	NULL
ref	NULL
rows	NULL
Extra	Impossible WHERE noticed after reading const tables
drop table t1;