summaryrefslogtreecommitdiff
path: root/mysql-test/r/plugin.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2010-04-30 22:04:35 +0200
committerSergei Golubchik <sergii@pisem.net>2010-04-30 22:04:35 +0200
commit2b8de050bfc98f0a0774d6a54be05ee774d2fa46 (patch)
treea3249b77467f82fa1c8bf1119f561a3952be141e /mysql-test/r/plugin.result
parentb58cb7c4a283ea9775d55d1d133cec9359f86dfa (diff)
downloadmariadb-git-2b8de050bfc98f0a0774d6a54be05ee774d2fa46.tar.gz
create table options bug:
alter table does not reset HA_OPTION_TEXT_CREATE_OPTIONS when the last option value is removed
Diffstat (limited to 'mysql-test/r/plugin.result')
-rw-r--r--mysql-test/r/plugin.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/plugin.result b/mysql-test/r/plugin.result
index 8621534c135..8d765945329 100644
--- a/mysql-test/r/plugin.result
+++ b/mysql-test/r/plugin.result
@@ -111,6 +111,12 @@ Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL
) ENGINE=EXAMPLE DEFAULT CHARSET=latin1 `ULL`=4660
+ALTER TABLE t1 ULL=DEFAULT;
+SHOW CREATE TABLE t1;
+Table Create Table
+t1 CREATE TABLE `t1` (
+ `a` int(11) DEFAULT NULL
+) ENGINE=EXAMPLE DEFAULT CHARSET=latin1
DROP TABLE t1;
SET @@SQL_MODE=@OLD_SQL_MODE;
select 1;