From 1b9b042654512c7013fceb135795fc4453011033 Mon Sep 17 00:00:00 2001 From: "monty@mashka.mysql.fi" <> Date: Fri, 7 Feb 2003 17:57:07 +0200 Subject: Fix problem in MIN/MAX optimisation (from last patch) Don't make OLD_PASSWORD() a reserved word --- mysql-test/t/explain.test | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'mysql-test/t/explain.test') diff --git a/mysql-test/t/explain.test b/mysql-test/t/explain.test index 8a41ebe5b4f..045598e97df 100644 --- a/mysql-test/t/explain.test +++ b/mysql-test/t/explain.test @@ -20,3 +20,11 @@ explain select * from t1 ignore key (str,str,foo) where str="foo"; drop table t1; explain select 1; + +create table t1 (a int not null); +explain select count(*) from t1; +insert into t1 values(1); +explain select count(*) from t1; +insert into t1 values(1); +explain select count(*) from t1; +drop table t1; -- cgit v1.2.1