~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/csv/tests/r/csv.result

  • Committer: Padraig O'Sullivan
  • Date: 2010-04-17 01:38:47 UTC
  • mfrom: (1237.9.238 bad-staging)
  • Revision ID: osullivan.padraig@gmail.com-20100417013847-ibjioqsfbmf5yg4g
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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";