~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/csv.test

MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1761
1761
select * from t1;
1762
1762
drop table t1;
1763
1763
 
 
1764
#
 
1765
# Bug#311104
 
1766
# CSV engine reports "out of memory" when you select
 
1767
# from a missing file
 
1768
#
 
1769
--disable_warnings
 
1770
drop table if exists t1;
 
1771
--enable_warnings
 
1772
 
 
1773
create table t1 (val int not null) engine=csv;
 
1774
--remove_file $MYSQLTEST_VARDIR/master-data/test/t1.CSV
 
1775
 
 
1776
--error 1017
 
1777
select * from t1;
 
1778
 
1764
1779
--echo End of 5.1 tests