From b176870cf6e1413001652631c0658a9cf9089e48 Mon Sep 17 00:00:00 2001 From: "petr/cps@mysql.com/owlet." <> Date: Tue, 11 Jul 2006 15:54:52 +0400 Subject: Fix Bug#15205 "Select from CSV table without the datafile causes crash" --- mysql-test/r/csv.result | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'mysql-test/r/csv.result') 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; -- cgit v1.2.1