1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixed some comments , plus introduced some tests so that I do not

make some new mistakes.
This commit is contained in:
Sinisa@sinisa.nasamreza.org
2002-06-18 17:38:06 +03:00
parent 73ffcf6ec6
commit 6ad30c9b2d
3 changed files with 7 additions and 3 deletions

View File

@@ -470,4 +470,7 @@ CREATE TABLE t ( a int(11) NOT NULL default '0', b int(11) NOT NULL default '0
select max(b) from t where a = 2;
max(b)
NULL
select max(b) from t1 where a = 2;
max(b)
1
drop table if exists t,t1,t2;