summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/21pg_get_notify.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pgsql/tests/21pg_get_notify.phpt')
-rw-r--r--ext/pgsql/tests/21pg_get_notify.phpt20
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/pgsql/tests/21pg_get_notify.phpt b/ext/pgsql/tests/21pg_get_notify.phpt
deleted file mode 100644
index 9171fc01aa..0000000000
--- a/ext/pgsql/tests/21pg_get_notify.phpt
+++ /dev/null
@@ -1,20 +0,0 @@
---TEST--
-PostgreSQL pg_get_notify() functions
---SKIPIF--
-<?php include("skipif.inc"); ?>
---FILE--
-<?php
-// optional functions
-
-include('config.inc');
-
-$db = pg_connect($conn_str);
-pg_query($db, 'LISTEN test_msg');
-pg_query($db, 'NOTIFY test_msg');
-
-$msg = pg_get_notify($db);
-
-isset($msg['message'],$msg['pid']) ? print 'OK' : print 'NG';
-?>
---EXPECT--
-OK