diff options
author | unknown <bar@bar.intranet.mysql.r18.ru> | 2004-05-14 13:08:22 +0500 |
---|---|---|
committer | unknown <bar@bar.intranet.mysql.r18.ru> | 2004-05-14 13:08:22 +0500 |
commit | bddb1bf359804b58f1139b47b519409a459b83ff (patch) | |
tree | 9f412a87be87b312ec358f27c4d210b6b3936526 /mysql-test/r/explain.result | |
parent | 4b2aa6b3592e0587cab1d4bde89854150f529ad4 (diff) | |
download | mariadb-git-bddb1bf359804b58f1139b47b519409a459b83ff.tar.gz |
Bug #3403 Wrong encoding in EXPLAIN SELECT output
Diffstat (limited to 'mysql-test/r/explain.result')
-rw-r--r-- | mysql-test/r/explain.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/explain.result b/mysql-test/r/explain.result index 02e1ace71e1..d66dec741bd 100644 --- a/mysql-test/r/explain.result +++ b/mysql-test/r/explain.result @@ -44,3 +44,12 @@ explain select count(*) from t1; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Select tables optimized away drop table t1; +set names koi8r; +create table таб (кол0 int, кол1 int, key инд0 (кол0), key инд01 (кол0,кол1)); +insert into таб (кол0) values (1); +insert into таб (кол0) values (2); +explain select кол0 from таб where кол0=1; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE таб ref инд0,инд01 инд0 5 const 1 Using where; Using index +drop table таб; +set names latin1; |