From: John Napiorkowski Date: Thu, 9 Jul 2009 21:52:22 +0000 (+0000) Subject: fixed test resultclass formatting, added a few more DBIC::Storage::DBI methods that... X-Git-Tag: v0.08109~76^2~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=7fb60fb192f4df2341b17e2b877eecd5f5dadd5a;hp=494674a52f9976f723d838cdfa96ab9b394b1c6e fixed test resultclass formatting, added a few more DBIC::Storage::DBI methods that I might need to delegate. --- diff --git a/lib/DBIx/Class/Storage/DBI/Replicated.pm b/lib/DBIx/Class/Storage/DBI/Replicated.pm index 8cb0fcd..22f6399 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated.pm @@ -288,7 +288,8 @@ has 'write_handler' => ( create_ddl_dir deployment_statements datetime_parser - datetime_parser_type + datetime_parser_type + build_datetime_parser last_insert_id insert insert_bulk @@ -303,10 +304,19 @@ has 'write_handler' => ( sth deploy with_deferred_fk_checks - + dbh_do reload_row + with_deferred_fk_checks _prep_for_execute - + + backup + is_datatype_numeric + _count_select + _subq_count_select + _subq_update_delete + svp_rollback + svp_begin + svp_release /], ); diff --git a/t/lib/DBICTest/Schema/Bookmark.pm b/t/lib/DBICTest/Schema/Bookmark.pm index 3e87e54..8c2c3b1 100644 --- a/t/lib/DBICTest/Schema/Bookmark.pm +++ b/t/lib/DBICTest/Schema/Bookmark.pm @@ -15,7 +15,7 @@ __PACKAGE__->add_columns( }, 'link' => { data_type => 'integer', - is_nullable => 1, + is_nullable => 1, }, );