summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2002-06-18 17:38:06 +0300
committerunknown <Sinisa@sinisa.nasamreza.org>2002-06-18 17:38:06 +0300
commitadc508c9011ded5506277d564c641070c0d9dc4d (patch)
tree13f620da68db6d9e260cb91c9a8c34486a17c8f2 /mysql-test/r
parenta35e083b1329b88f2f468d7983257484a9106feb (diff)
downloadmariadb-git-adc508c9011ded5506277d564c641070c0d9dc4d.tar.gz
Fixed some comments , plus introduced some tests so that I do not
make some new mistakes.
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/merge.result3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/merge.result b/mysql-test/r/merge.result
index 1e657883253..f6ca2acc91c 100644
--- a/mysql-test/r/merge.result
+++ b/mysql-test/r/merge.result
@@ -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;