diff options
author | unknown <petr/cps@owlet.local> | 2006-08-23 17:15:24 +0400 |
---|---|---|
committer | unknown <petr/cps@owlet.local> | 2006-08-23 17:15:24 +0400 |
commit | d08dd523a2bd9f11299b9e0322987397b3009a38 (patch) | |
tree | 18f02970d02b1a968090e9a6e6f3fba656eafe40 /mysql-test/r/csv.result | |
parent | 118677a29310232df348596565af2d258ca555c9 (diff) | |
parent | 70b73788980a955e5ee4e064c053d83b73b0b295 (diff) | |
download | mariadb-git-d08dd523a2bd9f11299b9e0322987397b3009a38.tar.gz |
Merge mysql.com:/home/cps/mysql/trees/mysql-5.0-virgin
into mysql.com:/home/cps/mysql/trees/mysql-5.1-virgin
storage/csv/ha_tina.cc:
merge later
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 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/csv.result b/mysql-test/r/csv.result index 04f0636d400..e342af32a80 100644 --- a/mysql-test/r/csv.result +++ b/mysql-test/r/csv.result @@ -5195,3 +5195,13 @@ select * from t1 where i between 2 and 4 and v in ('def','3r4f','lmn'); i v 4 3r4f 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: Can't get stat of './test/bug15205.CSV' (Errcode: 2) +select * from bug15205_2; +val +select * from bug15205; +val +drop table bug15205; +drop table bug15205_2; |