~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/csv.result

  • Committer: Brian Aker
  • Date: 2009-07-16 22:37:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1100.
  • Revision ID: brian@gaz-20090716223701-vbbbo8dmgd2ljqqo
Refactor TableShare has to be behind class.

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');
5098
5098
SHOW WARNINGS;
5099
5099
Level   Code    Message
5100
5100
Error   1178    The storage engine for the table doesn't support nullable columns
5101
 
Error   1005    Can't create table 'test.#t1' (errno: 138)
 
5101
Error   1005    Can't create table 'test.t1' (errno: 138)
5102
5102
create temporary table t1 (c1 blob not null) engine=csv;
5103
5103
insert into t1 values("This");
5104
5104
update t1 set c1="That" where c1="This";