diff options
author | petr/cps@mysql.com/owlet. <> | 2006-07-11 15:54:52 +0400 |
---|---|---|
committer | petr/cps@mysql.com/owlet. <> | 2006-07-11 15:54:52 +0400 |
commit | b176870cf6e1413001652631c0658a9cf9089e48 (patch) | |
tree | 14b80f2cbea92c4466d455c702b0ccc75109e0b9 /mysql-test/r/csv.result | |
parent | 023f44356fe01f93aa29b968bf771e5266352df8 (diff) | |
download | mariadb-git-b176870cf6e1413001652631c0658a9cf9089e48.tar.gz |
Fix Bug#15205 "Select from CSV table without the datafile causes crash"
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; |