--TEST-- PostgreSQL pg_select() - basic test using schema --SKIPIF-- --FILE-- 1))); /* Existent column */ var_dump(pg_select($conn, 'phptests.foo', array('id' => 1))); /* Testing with inexistent column */ var_dump(pg_select($conn, 'phptests.bar', array('id' => 1))); /* Existent column */ var_dump(pg_select($conn, 'phptests.bar', array('id4' => 4))); pg_query('DROP TABLE phptests.foo'); pg_query('DROP TABLE phptests.bar'); pg_query('DROP SCHEMA phptests'); ?> --EXPECTF-- Warning: pg_select(): Table 'foo' doesn't exists in %s on line %d bool(false) array(1) { [0]=> array(2) { ["id"]=> string(1) "1" ["id2"]=> string(1) "2" } } Notice: pg_select(): Invalid field name (id) in values in %s on line %d bool(false) array(1) { [0]=> array(2) { ["id4"]=> string(1) "4" ["id3"]=> string(1) "5" } }