diff options
author | unknown <bell@sanja.is.com.ua> | 2002-10-03 18:47:04 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-10-03 18:47:04 +0300 |
commit | 5e3de4a43e2bbd824524f9a5f34f21ccd0a6a991 (patch) | |
tree | a10d91a6ce2aa4dc6b0104292912675442cafafb /mysql-test/r/varbinary.result | |
parent | a03f5fd228ca1a835084f24e092ee1ce60e5a717 (diff) | |
download | mariadb-git-5e3de4a43e2bbd824524f9a5f34f21ccd0a6a991.tar.gz |
fixing EXPLAIN select types
Diffstat (limited to 'mysql-test/r/varbinary.result')
-rw-r--r-- | mysql-test/r/varbinary.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/varbinary.result b/mysql-test/r/varbinary.result index a7bd29afd78..1b6cf5e708e 100644 --- a/mysql-test/r/varbinary.result +++ b/mysql-test/r/varbinary.result @@ -12,7 +12,7 @@ insert into t1 set UNIQ=0x38afba1d73e6a18a; insert into t1 set UNIQ=123; explain select * from t1 where UNIQ=0x38afba1d73e6a18a; id select_type table type possible_keys key key_len ref rows Extra -1 FIRST t1 const UNIQ UNIQ 8 const 1 +1 SIMPLE 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 |