mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fix problem in MIN/MAX optimisation (from last patch)
Don't make OLD_PASSWORD() a reserved word
This commit is contained in:
@@ -31,3 +31,16 @@ drop table t1;
|
||||
explain select 1;
|
||||
Comment
|
||||
No tables used
|
||||
create table t1 (a int not null);
|
||||
explain select count(*) from t1;
|
||||
Comment
|
||||
Select tables optimized away
|
||||
insert into t1 values(1);
|
||||
explain select count(*) from t1;
|
||||
Comment
|
||||
Select tables optimized away
|
||||
insert into t1 values(1);
|
||||
explain select count(*) from t1;
|
||||
Comment
|
||||
Select tables optimized away
|
||||
drop table t1;
|
||||
|
||||
Reference in New Issue
Block a user