Browse Source

Actually drop test table.

# name is dropdb since it may be changed to actually destory test db
experimental/ZendEngine2
Yasuo Ohgaki 25 years ago
parent
commit
3778705036
  1. 8
      ext/pgsql/tests/dropdb.inc

8
ext/pgsql/tests/dropdb.inc

@ -3,12 +3,8 @@
include('config.inc');
// $db = pg_connect($conn_str);
// if (pg_num_rows(pg_query($db, "SELECT * FROM ".$table_name)))
// {
// pg_query($db, "DROP TABLE ".$table_name);
// }
// pg_close($db);
pg_connect($conn_str);
pg_query($db, "DROP TABLE ".$table_name);
echo "OK";
Loading…
Cancel
Save