summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2016-07-20 17:00:09 +0800
committerXinchen Hui <laruence@gmail.com>2016-07-20 17:00:09 +0800
commit9254f5d5d34982801dff7cea8cd361ab20abc9de (patch)
treef75fbf444a746a563e7aa598e999cb0149e33a0e /ext/pgsql/tests
parent07b869f367da4ffa8689d342a0d532f614b7f78e (diff)
parent97c0b133c560e81bafbedaa321216b8862e1bdfc (diff)
downloadphp-git-9254f5d5d34982801dff7cea8cd361ab20abc9de.tar.gz
Merge branch 'PHP-7.0'
* PHP-7.0: Fixed bug #72629 (Caught exception assignment to variables ignores references). Conflicts: main/php_version.h
Diffstat (limited to 'ext/pgsql/tests')
-rw-r--r--ext/pgsql/tests/config.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/tests/config.inc b/ext/pgsql/tests/config.inc
index e9944de793..7be1e242ad 100644
--- a/ext/pgsql/tests/config.inc
+++ b/ext/pgsql/tests/config.inc
@@ -5,7 +5,7 @@
// environment var PGSQL_TEST_CONNSTR
// "test" database must exist. i.e. "createdb test" before testing
-$conn_str = getenv('PGSQL_TEST_CONNSTR') ?: "host=localhost dbname=test port=5432"; // connection string
+$conn_str = getenv('PGSQL_TEST_CONNSTR') ?: "host=localhost dbname=test port=5432 user=postgres password=postgres"; // connection string
$table_name = "php_pgsql_test"; // test table that will be created
$table_name_92 = "php_pgsql_test_92"; // test table that will be created