1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Bug #3403 Wrong encoding in EXPLAIN SELECT output

This commit is contained in:
bar@bar.intranet.mysql.r18.ru
2004-05-14 13:08:22 +05:00
parent 2fc1d5c146
commit 6ecea2fa93
3 changed files with 23 additions and 3 deletions

View File

@@ -30,3 +30,14 @@ explain select count(*) from t1;
insert into t1 values(1);
explain select count(*) from t1;
drop table t1;
#
# 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;