diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-04-30 22:04:35 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-04-30 22:04:35 +0200 |
commit | 2b8de050bfc98f0a0774d6a54be05ee774d2fa46 (patch) | |
tree | a3249b77467f82fa1c8bf1119f561a3952be141e /mysql-test/r/plugin.result | |
parent | b58cb7c4a283ea9775d55d1d133cec9359f86dfa (diff) | |
download | mariadb-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.result | 6 |
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; |