summaryrefslogtreecommitdiff
path: root/ext/pgsql
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-19 16:51:06 +0200
committerAnatol Belski <ab@php.net>2014-08-19 16:51:06 +0200
commitbdbf47df181bdafc1b2bc2df1d23815f01510b88 (patch)
tree3c180c702950e48e6c7de388fa55d100029f48dc /ext/pgsql
parent1d8bc9a274fd49287591a11835bfa9b6d41bbfb5 (diff)
downloadphp-git-bdbf47df181bdafc1b2bc2df1d23815f01510b88.tar.gz
ported mysql and mysqlnd
Diffstat (limited to 'ext/pgsql')
-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 367f1ef9ba..be652b2507 100644
--- a/ext/pgsql/tests/config.inc
+++ b/ext/pgsql/tests/config.inc
@@ -4,7 +4,7 @@
// "test" database must be existed. i.e. "createdb test" before testing
// PostgreSQL uses login name as username, user must have access to "test" database.
-$conn_str = "host=localhost dbname=test port=5432"; // connection string
+$conn_str = "user=test password=test host=localhost dbname=test port=5432"; // 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
$num_test_record = 1000; // Number of records to create