diff options
author | unknown <monty@mashka.mysql.fi> | 2003-02-08 02:09:21 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-02-08 02:09:21 +0200 |
commit | 0e755652df91c07fca7a777272bd4b04f18ba516 (patch) | |
tree | c7756d4055a66864255358a434503e7e0e1f6bff /mysql-test/r/explain.result | |
parent | 5d782cc5cc028c7b2bb65f89caa5f2df7734b3e8 (diff) | |
download | mariadb-git-0e755652df91c07fca7a777272bd4b04f18ba516.tar.gz |
after merge fix
mysql-test/r/explain.result:
updated results
mysql-test/r/func_group.result:
updated results
mysql-test/r/order_by.result:
updated results
mysql-test/r/rpl000009.result:
updated results
mysql-test/r/rpl_insert_id.result:
updated results
mysql-test/r/show_check.result:
updated results
Diffstat (limited to 'mysql-test/r/explain.result')
-rw-r--r-- | mysql-test/r/explain.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/explain.result b/mysql-test/r/explain.result index 9c9cac4762b..63e4f4030d3 100644 --- a/mysql-test/r/explain.result +++ b/mysql-test/r/explain.result @@ -33,14 +33,14 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL No tables used create table t1 (a int not null); explain select count(*) from t1; -Comment -Select tables optimized away +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 insert into t1 values(1); explain select count(*) from t1; -Comment -Select tables optimized away +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 insert into t1 values(1); explain select count(*) from t1; -Comment -Select tables optimized away +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; |