X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FADO%2FMicrosoft_SQL_Server.pm;h=9bb93f94e82c566099720e04bd1f0826ca0832f7;hb=2a6dda4b;hp=0d383116b71a95e075ff7abf50274bd0c1804bb1;hpb=2edf33525bc7be0824693925c528791d84db98aa;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/ADO/Microsoft_SQL_Server.pm b/lib/DBIx/Class/Storage/DBI/ADO/Microsoft_SQL_Server.pm index 0d38311..9bb93f9 100644 --- a/lib/DBIx/Class/Storage/DBI/ADO/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Storage/DBI/ADO/Microsoft_SQL_Server.pm @@ -144,7 +144,7 @@ sub select_single { _normalize_guids($select, $col_infos, \@row, $self); - _strip_trailing_binary_nulls($select, $col_infos, \@row); + _strip_trailing_binary_nulls($select, $col_infos, \@row, $self); return @row; } @@ -189,9 +189,9 @@ sub _dbi_attrs_for_bind { return $attrs; } -# Can't edit all the binds in _dbi_attrs_for_bind for insert_bulk, so we take +# Can't edit all the binds in _dbi_attrs_for_bind for _insert_bulk, so we take # care of those GUIDs here. -sub insert_bulk { +sub _insert_bulk { my $self = shift; my ($source, $cols, $data) = @_; @@ -233,7 +233,7 @@ sub bind_attribute_by_data_type { } # FIXME This list is an abomination. We need a way to do this outside -# of the scope of DBIC, as as it is right now nobody will ever think to +# of the scope of DBIC, as it is right now nobody will ever think to # even look here to diagnose some sort of misbehavior. sub _mssql_max_data_type_representation_size_in_bytes { my $self = shift;