mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00

pg_convert() may ignore, NOT NULL and/or DEFAULT. pg_insert/pg_update/pg_select/pg_update may return query string.
11 lines
201 B
PHP
11 lines
201 B
PHP
--TEST--
|
|
PostgreSQL pg_insert()
|
|
--SKIPIF--
|
|
<?php include("skipif.inc"); ?>
|
|
--FILE--
|
|
<?php
|
|
include("pg_insert.inc");
|
|
?>
|
|
--EXPECT--
|
|
INSERT INTO php_pgsql_test (num,str,bin) VALUES (1234,'AAA','BBB');
|
|
Ok
|