diff options
author | unknown <gkodinov@dl145s.mysql.com> | 2006-09-18 18:30:51 +0400 |
---|---|---|
committer | unknown <gkodinov@dl145s.mysql.com> | 2006-09-18 18:30:51 +0400 |
commit | 379226c2fd02ce3eeec04b5ef3217719d8213ce9 (patch) | |
tree | 5d9c18734ec29a0f0a7805e0e42719eaaf6c9ba6 /mysql-test/r/insert_update.result | |
parent | 5222b59093bfd3d6055ff4d375f450c4468a7366 (diff) | |
download | mariadb-git-379226c2fd02ce3eeec04b5ef3217719d8213ce9.tar.gz |
merge fixes
Diffstat (limited to 'mysql-test/r/insert_update.result')
-rw-r--r-- | mysql-test/r/insert_update.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/insert_update.result b/mysql-test/r/insert_update.result index 169b5286fbe..baf3f71c4f7 100644 --- a/mysql-test/r/insert_update.result +++ b/mysql-test/r/insert_update.result @@ -62,8 +62,8 @@ id select_type table type possible_keys key key_len ref rows filtered Extra Warnings: Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c`,values(`test`.`t1`.`a`) AS `VALUES(a)` from `test`.`t1` explain extended select * from t1 where values(a); -id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ALL NULL NULL NULL NULL 5 Using where +id select_type table type possible_keys key key_len ref rows filtered Extra +1 SIMPLE t1 ALL NULL NULL NULL NULL 5 100.00 Using where Warnings: Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b`,`test`.`t1`.`c` AS `c` from `test`.`t1` where values(`test`.`t1`.`a`) DROP TABLE t1; |