X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbind%2Fbindtype_columns.t;h=940ce9223e62dc7521c2aadfaa27cd26ef70cc5a;hb=f3a9ea3d41f4d32346bc5ea7ce83a7dcfe45b118;hp=a6be9979c78e77e4021f4f72c8bb09f404eba32c;hpb=8138f96a9bb627e9f27cf9908532021217eb89b9;p=dbsrgits%2FDBIx-Class.git diff --git a/t/bind/bindtype_columns.t b/t/bind/bindtype_columns.t index a6be997..940ce92 100644 --- a/t/bind/bindtype_columns.t +++ b/t/bind/bindtype_columns.t @@ -20,12 +20,13 @@ my $dbh = $schema->storage->dbh; # the blob/clob are for reference only, will be useful when we switch to SQLT and can test Oracle along the way $dbh->do(qq[ - CREATE TABLE bindtype_test + CREATE TABLE bindtype_test ( id serial NOT NULL PRIMARY KEY, bytea bytea NULL, blob bytea NULL, - clob text NULL + clob text NULL, + a_memo text NULL ); ],{ RaiseError => 1, PrintError => 1 }); }