X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fsqlmaker%2Fmsaccess.t;fp=t%2Fsqlmaker%2Fmsaccess.t;h=5b5b6ce125dd1eba6a965d7431ed3b494dd6505d;hb=refs%2Fheads%2Fcurrent%2Fdq;hp=2805d0309ea03b48da918e74856535c10fd7b60a;hpb=2231d31c29347c34a6b58b88782da220775bddaa;p=dbsrgits%2FDBIx-Class.git diff --git a/t/sqlmaker/msaccess.t b/t/sqlmaker/msaccess.t index 2805d03..5b5b6ce 100644 --- a/t/sqlmaker/msaccess.t +++ b/t/sqlmaker/msaccess.t @@ -35,7 +35,7 @@ is_same_sql_bind( LEFT JOIN [track] [tracks] ON [tracks].[cd] = [cds].[cdid] ) - WHERE ( [artistid] = ? ) + WHERE [artistid] = ? )', [ [{ sqlt_datatype => 'integer', dbic_colname => 'artistid' } @@ -67,7 +67,7 @@ is_same_sql_bind( INNER JOIN [artist] [artist] ON [artist].[artistid] = [cd].[artist] ) - WHERE ( [trackid] = ? ) + WHERE [trackid] = ? )', [ [{ sqlt_datatype => 'integer', dbic_colname => 'trackid' } @@ -79,7 +79,7 @@ is_same_sql_bind( my $sa = $schema->storage->sql_maker; # the legacy tests assume no quoting - leave things as-is -local $sa->{quote_char}; +$sa->quote_char(undef); # my ($self, $table, $fields, $where, $order, @rest) = @_; my ($sql, @bind) = $sa->select(