Author: turnstep
Date: Mon Dec 15 10:24:16 2008
New Revision: 12160
Modified:
DBD-Pg/trunk/t/12placeholders.t
Log:
Don't try to adjust scs unless we are 8.2 or better. RT #41723
Modified: DBD-Pg/trunk/t/12placeholders.t
==============================================================================
--- DBD-Pg/trunk/t/12placeholders.t (original)
+++ DBD-Pg/trunk/t/12placeholders.t Mon Dec 15 10:24:16 2008
@@ -280,7 +280,7 @@
$dbh->rollback();
SKIP: {
- skip 'Setting standard_conforming_strings not available', 2 if !
defined $scs;
+ skip 'Cannot adjust standard_conforming_strings for testing on this
version of Postgres', 2 if $pgversion < 80200;
$t='Backslash quoting inside single quotes is parsed correctly with
standard_conforming_strings off';
eval {
$dbh->do(q{SET standard_conforming_strings = 'off'});