--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) { [u"id"]=> unicode(1) "1" [u"id2"]=> unicode(1) "2" } } Notice: pg_select(): Invalid field name (id) in values in %s on line %d bool(false) array(1) { [0]=> array(2) { [u"id4"]=> unicode(1) "4" [u"id3"]=> unicode(1) "5" } }