diff options
author | serg@serg.mylan <> | 2004-01-23 11:56:37 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-01-23 11:56:37 +0100 |
commit | b68a83a050c60445eb7fce5a34110218c59fa948 (patch) | |
tree | e07ca4405c0f1edf2e954d07bd6de5c3e51f5030 /mysql-test | |
parent | fbf4299b5c19e583fea70f1c6333dba37a07c563 (diff) | |
download | mariadb-git-b68a83a050c60445eb7fce5a34110218c59fa948.tar.gz |
patch reverted - USE_RAID is defined in my_config.h
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/derived.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/derived.result b/mysql-test/r/derived.result index d38601c331f..170c393524b 100644 --- a/mysql-test/r/derived.result +++ b/mysql-test/r/derived.result @@ -254,7 +254,7 @@ CREATE TABLE `t1` ( `M` tinyint(1) default '0', ) TYPE=MyISAM DEFAULT CHARSET=latin1; Warnings: -Warning 1286 'TYPE=database_engine' is deprecated. Use 'ENGINE=database_engine' instead. +Warning 1286 'TYPE=storage_engine' is deprecated. Use 'ENGINE=storage_engine' instead. INSERT INTO `t1` (N, M) VALUES (1, 0),(1, 0),(1, 0),(2, 0),(2, 0),(3, 0); UPDATE `t1` AS P1 INNER JOIN (SELECT N FROM `t1` GROUP BY N HAVING Count(M) > 1) AS P2 ON P1.N = P2.N SET P1.M = 2; select * from t1; |