summaryrefslogtreecommitdiff
path: root/mysql-test/r/having.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-08-19 03:02:09 +0200
committerunknown <serg@serg.mylan>2004-08-19 03:02:09 +0200
commitae2bf6275e971f45cdfda8dada9a9bfd6f75e746 (patch)
treebb710739af8b8fd4ec8ff388deaf56c37a27d24a /mysql-test/r/having.result
parent945625ebaa21468fdf0b2a3c1786fca50bdd5aa2 (diff)
downloadmariadb-git-ae2bf6275e971f45cdfda8dada9a9bfd6f75e746.tar.gz
after merge fixes
strings/my_vsnprintf.c: %.#s support in my_vsnprintf BitKeeper/etc/ignore: Added EXCEPTIONS-CLIENT to the ignore list
Diffstat (limited to 'mysql-test/r/having.result')
-rw-r--r--mysql-test/r/having.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/having.result b/mysql-test/r/having.result
index e2196fa62a8..f7e0bbf3e2c 100644
--- a/mysql-test/r/having.result
+++ b/mysql-test/r/having.result
@@ -90,17 +90,17 @@ drop table t1;
CREATE TABLE t1 (
`id` bigint(20) NOT NULL default '0',
`description` text
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
CREATE TABLE t2 (
`id` bigint(20) NOT NULL default '0',
`description` varchar(20)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
INSERT INTO t1 VALUES (1, 'test');
INSERT INTO t2 VALUES (1, 'test');
CREATE TABLE t3 (
`id` bigint(20) NOT NULL default '0',
`order_id` bigint(20) NOT NULL default '0'
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
select
a.id, a.description,
count(b.id) as c