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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user