diff options
author | unknown <bell@sanja.is.com.ua> | 2004-01-17 13:00:46 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-01-17 13:00:46 +0200 |
commit | 2de832dbf99a8796b081419a29cacbeb07cd3871 (patch) | |
tree | 89dba87bbf8d55bffb9d2843c235f27e310a5ff8 /mysql-test/r/subselect_innodb.result | |
parent | dea4107141f986aaacb73f348ef48d989a501ca6 (diff) | |
download | mariadb-git-2de832dbf99a8796b081419a29cacbeb07cd3871.tar.gz |
switched to new syntax (TYPE->ENGINE)
check of memory allocation operation was added
mysql-test/r/subselect_innodb.result:
switched to new syntax
mysql-test/t/subselect_innodb.test:
switched to new syntax
sql/sql_select.cc:
check of memory allocation operation
Diffstat (limited to 'mysql-test/r/subselect_innodb.result')
-rw-r--r-- | mysql-test/r/subselect_innodb.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/subselect_innodb.result b/mysql-test/r/subselect_innodb.result index 3a2a36475c5..e3528e06546 100644 --- a/mysql-test/r/subselect_innodb.result +++ b/mysql-test/r/subselect_innodb.result @@ -69,7 +69,7 @@ b int(11) default NULL, c char(3) default NULL, PRIMARY KEY (id), KEY t2i1 (b) -) TYPE=innodb DEFAULT CHARSET=latin1; +) ENGINE=innodb DEFAULT CHARSET=latin1; INSERT INTO t1 VALUES (0,0,'GPL'),(1,0,'GPL'),(2,1,'GPL'),(3,2,'GPL'); CREATE TABLE t2 ( id int(11) NOT NULL default '0', @@ -77,7 +77,7 @@ b int(11) default NULL, c char(3) default NULL, PRIMARY KEY (id), KEY t2i (b) -) TYPE=innodb DEFAULT CHARSET=latin1; +) ENGINE=innodb DEFAULT CHARSET=latin1; INSERT INTO t2 VALUES (0,0,'GPL'),(1,0,'GPL'),(2,1,'GPL'),(3,2,'GPL'); select (select max(id) from t2 where b=1 group by b) as x,b from t1 where b=1; x b |