This makes the tests independent of each other and allows them to be run in parallel. Co-authored-by: Gina Peter Banyard <girgias@php.net>
44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
--TEST--
|
|
PostgreSQL drop db
|
|
--EXTENSIONS--
|
|
pgsql
|
|
--SKIPIF--
|
|
<?php include("inc/skipif.inc"); ?>
|
|
--FILE--
|
|
<?php
|
|
// drop test table
|
|
|
|
include('inc/config.inc');
|
|
$table_name = "table_9999dropdb";
|
|
$table_name_92 = "table_9999dropdb_92";
|
|
$view_name = "view_9999dropdb";
|
|
|
|
$db = pg_connect($conn_str);
|
|
pg_query($db, "CREATE TABLE {$table_name} (num int, str text, bin bytea)");
|
|
pg_query($db, "CREATE TABLE {$table_name_92} (textary text[], jsn json)");
|
|
pg_query($db, "CREATE VIEW {$view_name} as SELECT * FROM {$table_name}");
|
|
|
|
pg_query($db, "DROP VIEW {$view_name}");
|
|
pg_query($db, "DROP TABLE {$table_name}");
|
|
pg_query($db, "DROP TABLE {$table_name_92}");
|
|
|
|
echo "OK";
|
|
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
include('inc/config.inc');
|
|
$table_name = "table_9999dropdb";
|
|
$table_name_92 = "table_9999dropdb_92";
|
|
$view_name = "view_9999dropdb";
|
|
|
|
$db = pg_connect($conn_str);
|
|
pg_query($db, "DROP VIEW IF EXISTS {$view_name}");
|
|
pg_query($db, "DROP TABLE IF EXISTS {$table_name}");
|
|
pg_query($db, "DROP TABLE IF EXISTS {$table_name_92}");
|
|
|
|
|
|
?>
|
|
--EXPECT--
|
|
OK
|