diff options
author | unknown <kostja@bodhi.local> | 2007-01-11 22:15:20 +0300 |
---|---|---|
committer | unknown <kostja@bodhi.local> | 2007-01-11 22:15:20 +0300 |
commit | c1bcbe2973c2c3a4054635bac4a787ca06758c05 (patch) | |
tree | e4e6b520180358f870a1eeddcb51c8da437e1b44 /mysql-test/r/csv.result | |
parent | bd27fcf8438a53d88ff292d955c13253a916b349 (diff) | |
parent | 5ed3d05e4078032f44d74c116919d2a0ec4aa550 (diff) | |
download | mariadb-git-c1bcbe2973c2c3a4054635bac4a787ca06758c05.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.1
into bodhi.local:/opt/local/work/mysql-5.1-runtime
mysql-test/t/trigger.test:
Auto merged
sql/item_func.cc:
Auto merged
sql/sql_prepare.cc:
Auto merged
storage/csv/ha_tina.cc:
Auto merged
mysql-test/r/csv.result:
Manual merge.
mysql-test/t/csv.test:
Manual merge.
Diffstat (limited to 'mysql-test/r/csv.result')
-rw-r--r-- | mysql-test/r/csv.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/csv.result b/mysql-test/r/csv.result index 6456eb1d1ba..d253d121e99 100644 --- a/mysql-test/r/csv.result +++ b/mysql-test/r/csv.result @@ -5239,3 +5239,11 @@ id string 0.67 string 9.67 string drop table float_test; +CREATE TABLE `bug21328` ( +`col1` int(11) DEFAULT NULL, +`col2` int(11) DEFAULT NULL, +`col3` int(11) DEFAULT NULL +) ENGINE=CSV; +insert into bug21328 values (1,NULL,NULL); +alter table bug21328 engine=myisam; +drop table bug21328; |