diff options
author | unknown <petr/cps@mysql.com/owlet> | 2006-08-18 16:48:32 +0400 |
---|---|---|
committer | unknown <petr/cps@mysql.com/owlet> | 2006-08-18 16:48:32 +0400 |
commit | 70b73788980a955e5ee4e064c053d83b73b0b295 (patch) | |
tree | a37679ea94e429f80d2f30b7b2da16ba90512ff5 /mysql-test/r/csv.result | |
parent | 5c8c2ab43b73984889fd6c337523b657861793ea (diff) | |
parent | b747f9732b008efc3dfefb4e0344cfa1b9e14e56 (diff) | |
download | mariadb-git-70b73788980a955e5ee4e064c053d83b73b0b295.tar.gz |
Merge pchardin@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/cps/mysql/trees/mysql-5.0-virgin
sql/examples/ha_tina.cc:
Auto merged
Diffstat (limited to 'mysql-test/r/csv.result')
-rw-r--r-- | mysql-test/r/csv.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/csv.result b/mysql-test/r/csv.result index 3c87c1f4b92..f3e91a663b8 100644 --- a/mysql-test/r/csv.result +++ b/mysql-test/r/csv.result @@ -5000,3 +5000,13 @@ insert t1 values (1),(2),(3),(4),(5); truncate table t1; affected rows: 0 drop table t1; +create table bug15205 (val int(11) default null) engine=csv; +create table bug15205_2 (val int(11) default null) engine=csv; +select * from bug15205; +ERROR HY000: Got error 1 from storage engine +select * from bug15205_2; +val +select * from bug15205; +val +drop table bug15205; +drop table bug15205_2; |