summaryrefslogtreecommitdiff
path: root/mysql-test/r/csv.result
diff options
context:
space:
mode:
authorpetr/cps@mysql.com/owlet. <>2006-07-11 15:54:52 +0400
committerpetr/cps@mysql.com/owlet. <>2006-07-11 15:54:52 +0400
commitb176870cf6e1413001652631c0658a9cf9089e48 (patch)
tree14b80f2cbea92c4466d455c702b0ccc75109e0b9 /mysql-test/r/csv.result
parent023f44356fe01f93aa29b968bf771e5266352df8 (diff)
downloadmariadb-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.result10
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;