Fix updating multiple CLOB/BLOB columns on Oracle
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / BindType.pm
index 5670f2f..f8d7e67 100644 (file)
@@ -1,6 +1,9 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     DBICTest::Schema::BindType;
 
+use warnings;
+use strict;
+
 use base qw/DBICTest::BaseResult/;
 
 __PACKAGE__->table('bindtype_test');
@@ -18,10 +21,22 @@ __PACKAGE__->add_columns(
     data_type => 'blob',
     is_nullable => 1,
   },
+  'blob2' => {
+    data_type => 'blob',
+    is_nullable => 1,
+  },
   'clob' => {
     data_type => 'clob',
     is_nullable => 1,
   },
+  'clob2' => {
+    data_type => 'clob',
+    is_nullable => 1,
+  },
+  'a_memo' => {
+    data_type => 'memo',
+    is_nullable => 1,
+  },
 );
 
 __PACKAGE__->set_primary_key('id');