diff options
author | rburnett@production.mysql.com <> | 2006-06-15 16:51:24 +0200 |
---|---|---|
committer | rburnett@production.mysql.com <> | 2006-06-15 16:51:24 +0200 |
commit | 364cf6d72e1fbbcd5515ee24b3635671a1b87c04 (patch) | |
tree | 9bc0528b81a76c6d49a3650408251163d3fcd745 /mysql-test/r/partition_mgm.result | |
parent | 384fa9b67e28a1dac94c2c067d47988d36a89c64 (diff) | |
download | mariadb-git-364cf6d72e1fbbcd5515ee24b3635671a1b87c04.tar.gz |
Many files:
Small corrections after a bad merge
Diffstat (limited to 'mysql-test/r/partition_mgm.result')
-rw-r--r-- | mysql-test/r/partition_mgm.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/partition_mgm.result b/mysql-test/r/partition_mgm.result index 48bbdf57b93..70bd1d6decf 100644 --- a/mysql-test/r/partition_mgm.result +++ b/mysql-test/r/partition_mgm.result @@ -6,11 +6,11 @@ Table Create Table t1 CREATE TABLE `t1` ( `f_date` date DEFAULT NULL, `f_varchar` varchar(30) DEFAULT NULL -) ENGINE=MyISAM DEFAULT CHARSET=latin1 PARTITION BY HASH (CAST(YEAR(f_date) AS SIGNED INTEGER)) PARTITIONS 2 +) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY HASH (CAST(YEAR(f_date) AS SIGNED INTEGER)) PARTITIONS 2 */ ALTER TABLE t1 COALESCE PARTITION 1; SHOW CREATE TABLE t1; Table Create Table t1 CREATE TABLE `t1` ( `f_date` date DEFAULT NULL, `f_varchar` varchar(30) DEFAULT NULL -) ENGINE=MyISAM DEFAULT CHARSET=latin1 PARTITION BY HASH (CAST(YEAR(f_date) AS SIGNED INTEGER)) PARTITIONS 1 +) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY HASH (CAST(YEAR(f_date) AS SIGNED INTEGER)) PARTITIONS 1 */ |