diff options
author | bell@sanja.is.com.ua <> | 2002-09-26 23:08:22 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-09-26 23:08:22 +0300 |
commit | 46a22a5be75c09019ae35e84ff8d8ba6803e6df6 (patch) | |
tree | 811744b79667e1e3e450406097ddfc1a03a886db /mysql-test/r/varbinary.result | |
parent | d9989c635eebba093f6c3489fecdb254ce828985 (diff) | |
download | mariadb-git-46a22a5be75c09019ae35e84ff8d8ba6803e6df6.tar.gz |
new EXPLAIN
fixed bug in mysql-test/create-test-result
fixed bug in union-subselect engine
Diffstat (limited to 'mysql-test/r/varbinary.result')
-rw-r--r-- | mysql-test/r/varbinary.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/varbinary.result b/mysql-test/r/varbinary.result index a63db14b736..a7bd29afd78 100644 --- a/mysql-test/r/varbinary.result +++ b/mysql-test/r/varbinary.result @@ -11,8 +11,8 @@ create table t1 (ID int(8) unsigned zerofill not null auto_increment,UNIQ bigint insert into t1 set UNIQ=0x38afba1d73e6a18a; insert into t1 set UNIQ=123; explain select * from t1 where UNIQ=0x38afba1d73e6a18a; -table type possible_keys key key_len ref rows Extra -t1 const UNIQ UNIQ 8 const 1 +id select_type table type possible_keys key key_len ref rows Extra +1 FIRST t1 const UNIQ UNIQ 8 const 1 drop table t1; select x'hello'; You have an error in your SQL syntax near 'x'hello'' at line 1 |