diff options
-rw-r--r-- | ext/pgsql/pg_insert_002.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pg_insert_002.phpt b/ext/pgsql/pg_insert_002.phpt index 1393f5f330..87d87b8475 100644 --- a/ext/pgsql/pg_insert_002.phpt +++ b/ext/pgsql/pg_insert_002.phpt @@ -10,7 +10,7 @@ include('config.inc'); $conn = pg_connect($conn_str); foreach (array('', '.', '..') as $table) { - var_dump(pg_insert($conn, '', array('id' => 1, 'id2' => 1))); + var_dump(pg_insert($conn, $table, array('id' => 1, 'id2' => 1))); } ?> Done |