diff options
author | Anatol Belski <ab@php.net> | 2014-08-19 16:51:06 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-19 16:51:06 +0200 |
commit | bdbf47df181bdafc1b2bc2df1d23815f01510b88 (patch) | |
tree | 3c180c702950e48e6c7de388fa55d100029f48dc /ext/pgsql | |
parent | 1d8bc9a274fd49287591a11835bfa9b6d41bbfb5 (diff) | |
download | php-git-bdbf47df181bdafc1b2bc2df1d23815f01510b88.tar.gz |
ported mysql and mysqlnd
Diffstat (limited to 'ext/pgsql')
-rw-r--r-- | ext/pgsql/tests/config.inc | 2 |
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 |