X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FNoBindVars.pm;h=b900f580e1195cea55f16f983e5ae320bfcb6c53;hb=9041a97a57cd2831d20e3b25772b29f9af3d8ef9;hp=637e41140f833d154f009a4fce47a048a775c753;hpb=ce2f316d3cc7ca300b3fba88f313fed1b7732d19;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Storage/DBI/NoBindVars.pm b/lib/DBIx/Class/Storage/DBI/NoBindVars.pm index 637e411..b900f58 100644 --- a/lib/DBIx/Class/Storage/DBI/NoBindVars.pm +++ b/lib/DBIx/Class/Storage/DBI/NoBindVars.pm @@ -56,10 +56,7 @@ sub _prep_for_execute { my $col = shift @$bound; my $name_sep = $self->_sql_maker_opts->{name_sep} || '.'; - my $quote_char = $self->_sql_maker_opts->{quote_char} || ''; - $quote_char = join '', @$quote_char if ref $quote_char eq 'ARRAY'; - $col =~ s/[\Q${quote_char}\E]//g if $quote_char; $col =~ s/^([^\Q${name_sep}\E]*)\Q${name_sep}\E//; my $alias = $1 || 'me';