summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-12-31 17:42:39 +0000
committerMarcus Boerger <helly@php.net>2005-12-31 17:42:39 +0000
commit847954692085d7bdc564a9bc4414fdfefb75c571 (patch)
tree636406da1694dfc3e419017b8ebc672a944c6885 /ext/pdo_pgsql
parent90c6bfd25924eae34d780dcdf8f9f6b8846dde1a (diff)
downloadphp-git-847954692085d7bdc564a9bc4414fdfefb75c571.tar.gz
- MFH Fix tests
Diffstat (limited to 'ext/pdo_pgsql')
-rw-r--r--ext/pdo_pgsql/tests/bug_33876.phpt1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pdo_pgsql/tests/bug_33876.phpt b/ext/pdo_pgsql/tests/bug_33876.phpt
index 725d44db9d..fc9d20f696 100644
--- a/ext/pdo_pgsql/tests/bug_33876.phpt
+++ b/ext/pdo_pgsql/tests/bug_33876.phpt
@@ -13,6 +13,7 @@ require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc';
$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
+$db->exec("SET LC_MESSAGES='C'");
$db->exec('CREATE TABLE test (foo varchar(5) NOT NULL, bar bool NOT NULL)');
$db->exec("INSERT INTO test VALUES('false','f')");
$db->exec("INSERT INTO test VALUES('true', 't')");