summaryrefslogtreecommitdiff
path: root/mysql-test/t/merge.test
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/t/merge.test
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/t/merge.test')
-rw-r--r--mysql-test/t/merge.test1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/merge.test b/mysql-test/t/merge.test
index de26d7eb1d3..483ff316740 100644
--- a/mysql-test/t/merge.test
+++ b/mysql-test/t/merge.test
@@ -174,4 +174,5 @@ CREATE TABLE t2 ( a int(11) NOT NULL default '0', b int(11) NOT NULL default '
INSERT INTO t2 VALUES (1,2), (2,2);
CREATE TABLE t ( a int(11) NOT NULL default '0', b int(11) NOT NULL default '0', KEY a (a,b)) TYPE=MRG_MyISAM UNION=(t1,t2);
select max(b) from t where a = 2;
+select max(b) from t1 where a = 2;
drop table if exists t,t1,t2;