summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/12pg_insert.phpt
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-04-23 03:42:26 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-04-23 03:42:26 +0000
commite7e0eddadd0931c45208c393b340085e9c550852 (patch)
treed2d01b04c412d28831810711f154d9660be7ab67 /ext/pgsql/tests/12pg_insert.phpt
parentf54f199906f6cff7ba2c0aac0372f1311e7f55f3 (diff)
downloadphp-git-e7e0eddadd0931c45208c393b340085e9c550852.tar.gz
Make pg_convert/pg_insert/pg_select/pg_update/pg_delete a bit more flexible.
pg_convert() may ignore, NOT NULL and/or DEFAULT. pg_insert/pg_update/pg_select/pg_update may return query string.
Diffstat (limited to 'ext/pgsql/tests/12pg_insert.phpt')
-rw-r--r--ext/pgsql/tests/12pg_insert.phpt1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pgsql/tests/12pg_insert.phpt b/ext/pgsql/tests/12pg_insert.phpt
index 8070df1539..104b6fe662 100644
--- a/ext/pgsql/tests/12pg_insert.phpt
+++ b/ext/pgsql/tests/12pg_insert.phpt
@@ -7,4 +7,5 @@ PostgreSQL pg_insert()
include("pg_insert.inc");
?>
--EXPECT--
+INSERT INTO php_pgsql_test (num,str,bin) VALUES (1234,'AAA','BBB');
Ok