From: Peter Rabbitson Date: Sun, 21 Sep 2014 17:40:27 +0000 (+0200) Subject: Link fixes (no other changes) X-Git-Tag: v1.79~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FSQL-Abstract.git;a=commitdiff_plain;h=1f490ae449fd0c9dc413b776cbc77557f79d6ab5 Link fixes (no other changes) --- diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index 1b5f490..692816f 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -2196,7 +2196,7 @@ or perhaps even If you fall victim to the above - please attempt to reduce the problem to something that could be sent to the L +|DBIx::Class/GETTING HELP/SUPPORT> (either publicly or privately). As a workaround in the meantime you can set C<$ENV{SQLA_ISVALUE_IGNORE_AUTOGENERATED_STRINGIFICATION}> to a true value, which will most likely eliminate your problem (at the expense of @@ -2698,12 +2698,13 @@ This would create: @bind = ('10'); Note that you must pass the bind values in the same format as they are returned -by L. That means that if you set L to C, you must -provide the bind values in the C<< [ column_meta => value ] >> format, where -C is an opaque scalar value; most commonly the column name, but -you can use any scalar value (including references and blessed references), -L will simply pass it through intact. So if C is set -to C the above example will look like: +by L. This means that if you set L +to C, you must provide the bind values in the +C<< [ column_meta => value ] >> format, where C is an opaque +scalar value; most commonly the column name, but you can use any scalar value +(including references and blessed references), L will simply +pass it through intact. So if C is set to C the above +example will look like: my %where = ( date_column => \[ "= date '2008-09-30' - ?::integer", [ {} => 10 ] ]