~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/csv.result

Fixed bashism.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4997
4997
affected rows: 4
4998
4998
insert t1 values (1),(2),(3),(4),(5);
4999
4999
truncate table t1;
5000
 
affected rows: 5
 
5000
affected rows: 0
5001
5001
drop table t1;
5002
5002
create temporary table float_test (id float not null,string varchar(64) not null) Engine=CSV;
5003
5003
insert into float_test values(1.0,'string');