2000-12-28 02:56:38 +01:00
|
|
|
|
#
|
|
|
|
|
# Test of different EXPLAIN's
|
|
|
|
|
|
2003-01-06 00:48:59 +01:00
|
|
|
|
--disable_warnings
|
2000-12-28 02:56:38 +01:00
|
|
|
|
drop table if exists t1;
|
2003-01-06 00:48:59 +01:00
|
|
|
|
--enable_warnings
|
2000-12-28 02:56:38 +01:00
|
|
|
|
create table t1 (id int not null, str char(10), unique(str));
|
2003-01-20 17:17:14 +01:00
|
|
|
|
explain select * from t1;
|
2000-12-28 02:56:38 +01:00
|
|
|
|
insert into t1 values (1, null),(2, null),(3, "foo"),(4, "bar");
|
|
|
|
|
select * from t1 where str is null;
|
|
|
|
|
select * from t1 where str="foo";
|
|
|
|
|
explain select * from t1 where str is null;
|
|
|
|
|
explain select * from t1 where str="foo";
|
|
|
|
|
explain select * from t1 ignore key (str) where str="foo";
|
|
|
|
|
explain select * from t1 use key (str,str) where str="foo";
|
|
|
|
|
|
|
|
|
|
#The following should give errors
|
Fixed bug #17873: confusing error message when IGNORE/USE/FORCE INDEX
refers to a column name.
mysql-test/r/select.result:
Fixed bug #17873: confusing error message when IGNORE/USE/FORCE INDEX
refers to a column name.
Added a new test case.
mysql-test/t/select.test:
Fixed bug #17873: confusing error message when IGNORE/USE/FORCE INDEX
refers to a column name.
Added a new test case.
sql/share/czech/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/danish/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/dutch/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/english/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/estonian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/french/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/german/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/greek/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.\
sql/share/hungarian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/italian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/japanese-sjis/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.\
sql/share/japanese/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/korean/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/norwegian-ny/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/norwegian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/polish/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/portuguese/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/romanian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/russian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/serbian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/slovak/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/spanish/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/swedish/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/ukrainian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
2006-05-30 09:08:58 +02:00
|
|
|
|
--error 1176
|
2003-01-20 17:17:14 +01:00
|
|
|
|
explain select * from t1 use key (str,str,foo) where str="foo";
|
Fixed bug #17873: confusing error message when IGNORE/USE/FORCE INDEX
refers to a column name.
mysql-test/r/select.result:
Fixed bug #17873: confusing error message when IGNORE/USE/FORCE INDEX
refers to a column name.
Added a new test case.
mysql-test/t/select.test:
Fixed bug #17873: confusing error message when IGNORE/USE/FORCE INDEX
refers to a column name.
Added a new test case.
sql/share/czech/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/danish/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/dutch/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/english/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/estonian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/french/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/german/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/greek/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.\
sql/share/hungarian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/italian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/japanese-sjis/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.\
sql/share/japanese/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/korean/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/norwegian-ny/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/norwegian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/polish/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/portuguese/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/romanian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/russian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/serbian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/slovak/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/spanish/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/swedish/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
sql/share/ukrainian/errmsg.txt:
Removed error message ER_INDEX_DOES_NOT_EXIST,
used ER_KEY_DOES_NOT_EXITS instead.
2006-05-30 09:08:58 +02:00
|
|
|
|
--error 1176
|
2003-01-20 17:17:14 +01:00
|
|
|
|
explain select * from t1 ignore key (str,str,foo) where str="foo";
|
2000-12-28 02:56:38 +01:00
|
|
|
|
drop table t1;
|
|
|
|
|
|
|
|
|
|
explain select 1;
|
2003-02-07 16:57:07 +01:00
|
|
|
|
|
|
|
|
|
create table t1 (a int not null);
|
|
|
|
|
explain select count(*) from t1;
|
|
|
|
|
insert into t1 values(1);
|
|
|
|
|
explain select count(*) from t1;
|
|
|
|
|
insert into t1 values(1);
|
|
|
|
|
explain select count(*) from t1;
|
|
|
|
|
drop table t1;
|
2004-05-14 10:08:22 +02:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Bug #3403 Wrong encoding in EXPLAIN SELECT output
|
|
|
|
|
#
|
|
|
|
|
set names koi8r;
|
|
|
|
|
create table <20><><EFBFBD> (<28><><EFBFBD>0 int, <20><><EFBFBD>1 int, key <20><><EFBFBD>0 (<28><><EFBFBD>0), key <20><><EFBFBD>01 (<28><><EFBFBD>0,<2C><><EFBFBD>1));
|
|
|
|
|
insert into <20><><EFBFBD> (<28><><EFBFBD>0) values (1);
|
|
|
|
|
insert into <20><><EFBFBD> (<28><><EFBFBD>0) values (2);
|
|
|
|
|
explain select <20><><EFBFBD>0 from <20><><EFBFBD> where <20><><EFBFBD>0=1;
|
|
|
|
|
drop table <20><><EFBFBD>;
|
|
|
|
|
set names latin1;
|
2005-07-28 02:22:47 +02:00
|
|
|
|
|
|
|
|
|
# End of 4.1 tests
|
2006-05-03 16:02:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Bug#15463: EXPLAIN SELECT..INTO hangs the client (QB, command line)
|
|
|
|
|
#
|
|
|
|
|
select 3 into @v1;
|
|
|
|
|
explain select 3 into @v1;
|
|
|
|
|
|
2007-03-07 19:44:58 +01:00
|
|
|
|
#
|
|
|
|
|
# Bug#22331: Wrong WHERE in EXPLAIN EXTENDED when all expressions were
|
|
|
|
|
# optimized away.
|
|
|
|
|
#
|
|
|
|
|
create table t1(f1 int, f2 int);
|
|
|
|
|
insert into t1 values (1,1);
|
|
|
|
|
create view v1 as select * from t1 where f1=1;
|
|
|
|
|
explain extended select * from v1 where f2=1;
|
|
|
|
|
explain extended select * from t1 where 0;
|
|
|
|
|
explain extended select * from t1 where 1;
|
|
|
|
|
explain extended select * from t1 having 0;
|
|
|
|
|
explain extended select * from t1 having 1;
|
2007-03-07 22:27:42 +01:00
|
|
|
|
drop view v1;
|
2007-03-07 19:44:58 +01:00
|
|
|
|
drop table t1;
|
|
|
|
|
|
2007-11-16 11:58:09 +01:00
|
|
|
|
#
|
|
|
|
|
# Bug #32241: memory corruption due to large index map in 'Range checked for
|
|
|
|
|
# each record'
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
CREATE TABLE t1(c INT);
|
|
|
|
|
INSERT INTO t1 VALUES (),();
|
|
|
|
|
|
|
|
|
|
CREATE TABLE t2 (b INT,
|
|
|
|
|
KEY(b),KEY(b),KEY(b),KEY(b),KEY(b),
|
|
|
|
|
KEY(b),KEY(b),KEY(b),KEY(b),KEY(b),
|
|
|
|
|
KEY(b),KEY(b),KEY(b),KEY(b),KEY(b),
|
|
|
|
|
KEY(b),KEY(b),KEY(b),KEY(b),KEY(b),
|
|
|
|
|
KEY(b),KEY(b),KEY(b),KEY(b),KEY(b),
|
|
|
|
|
KEY(b),KEY(b),KEY(b),KEY(b),KEY(b),
|
|
|
|
|
KEY(b),KEY(b),KEY(b),KEY(b),KEY(b),
|
|
|
|
|
KEY(b),KEY(b),KEY(b),KEY(b),KEY(b));
|
|
|
|
|
|
|
|
|
|
INSERT INTO t2 VALUES (),(),();
|
|
|
|
|
|
|
|
|
|
# We only need to make sure that there is no buffer overrun and the index map
|
|
|
|
|
# is displayed correctly
|
|
|
|
|
--replace_column 1 X 2 X 3 X 4 X 5 X 6 X 7 X 8 X 9 X
|
|
|
|
|
EXPLAIN SELECT 1 FROM
|
|
|
|
|
(SELECT 1 FROM t2,t1 WHERE b < c GROUP BY 1 LIMIT 1) AS d2;
|
|
|
|
|
DROP TABLE t2;
|
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
2008-10-06 16:17:25 +02:00
|
|
|
|
#
|
|
|
|
|
# Bug #34773: query with explain extended and derived table / other table
|
|
|
|
|
# crashes server
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
CREATE TABLE t1(a INT);
|
|
|
|
|
CREATE TABLE t2(a INT);
|
|
|
|
|
INSERT INTO t1 VALUES (1),(2);
|
|
|
|
|
INSERT INTO t2 VALUES (1),(2);
|
|
|
|
|
|
|
|
|
|
EXPLAIN EXTENDED SELECT 1
|
|
|
|
|
FROM (SELECT COUNT(DISTINCT t1.a) FROM t1,t2 GROUP BY t1.a) AS s1;
|
|
|
|
|
|
|
|
|
|
EXPLAIN EXTENDED SELECT 1
|
|
|
|
|
FROM (SELECT COUNT(DISTINCT t1.a) FROM t1,t2 GROUP BY t1.a) AS s1;
|
|
|
|
|
|
|
|
|
|
prepare s1 from
|
|
|
|
|
'EXPLAIN EXTENDED SELECT 1
|
|
|
|
|
FROM (SELECT COUNT(DISTINCT t1.a) FROM t1,t2 GROUP BY t1.a) AS s1';
|
|
|
|
|
execute s1;
|
|
|
|
|
|
|
|
|
|
prepare s1 from
|
|
|
|
|
'EXPLAIN EXTENDED SELECT 1
|
|
|
|
|
FROM (SELECT COUNT(DISTINCT t1.a) FROM t1,t2 GROUP BY t1.a) AS s1';
|
|
|
|
|
execute s1;
|
|
|
|
|
execute s1;
|
|
|
|
|
|
|
|
|
|
DROP TABLE t1,t2;
|
|
|
|
|
|
2009-03-11 13:10:44 +01:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Bug #43354: Use key hint can crash server in explain extended query
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
CREATE TABLE t1 (a INT PRIMARY KEY);
|
|
|
|
|
|
|
|
|
|
--error ER_KEY_DOES_NOT_EXITS
|
|
|
|
|
EXPLAIN EXTENDED SELECT COUNT(a) FROM t1 USE KEY(a);
|
|
|
|
|
|
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
|
|
|
|
|
|
2006-05-03 16:02:43 +02:00
|
|
|
|
# End of 5.0 tests.
|
2009-03-11 13:29:59 +01:00
|
|
|
|
|
2008-10-27 10:26:32 +01:00
|
|
|
|
--echo #
|
|
|
|
|
--echo # Bug#37870: Usage of uninitialized value caused failed assertion.
|
|
|
|
|
--echo #
|
2008-11-05 16:40:23 +01:00
|
|
|
|
create table t1 (dt datetime not null, t time not null);
|
2008-10-27 10:26:32 +01:00
|
|
|
|
create table t2 (dt datetime not null);
|
2008-11-05 16:40:23 +01:00
|
|
|
|
insert into t1 values ('2001-01-01 1:1:1', '1:1:1'),
|
|
|
|
|
('2001-01-01 1:1:1', '1:1:1');
|
2008-10-27 10:26:32 +01:00
|
|
|
|
insert into t2 values ('2001-01-01 1:1:1'), ('2001-01-01 1:1:1');
|
|
|
|
|
flush tables;
|
|
|
|
|
EXPLAIN SELECT OUTR.dt FROM t1 AS OUTR WHERE OUTR.dt IN (SELECT INNR.dt FROM t2 AS INNR WHERE OUTR.dt IS NULL );
|
2008-11-05 16:40:23 +01:00
|
|
|
|
flush tables;
|
2008-10-27 10:26:32 +01:00
|
|
|
|
SELECT OUTR.dt FROM t1 AS OUTR WHERE OUTR.dt IN (SELECT INNR.dt FROM t2 AS INNR WHERE OUTR.dt IS NULL );
|
2008-11-05 16:40:23 +01:00
|
|
|
|
flush tables;
|
|
|
|
|
EXPLAIN SELECT OUTR.dt FROM t1 AS OUTR WHERE OUTR.dt IN ( SELECT INNR.dt FROM t2 AS INNR WHERE OUTR.t < '2005-11-13 7:41:31' );
|
|
|
|
|
flush tables;
|
|
|
|
|
SELECT OUTR.dt FROM t1 AS OUTR WHERE OUTR.dt IN ( SELECT INNR.dt FROM t2 AS INNR WHERE OUTR.t < '2005-11-13 7:41:31' );
|
2008-10-27 10:26:32 +01:00
|
|
|
|
drop tables t1, t2;
|
|
|
|
|
|
2009-03-11 13:29:59 +01:00
|
|
|
|
--echo End of 5.1 tests.
|