summaryrefslogtreecommitdiff
path: root/src/test/regress/output
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-01-11 20:12:43 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-01-11 20:12:43 +0000
commit782eefc580a503db4773cd177b17dcc6fd33b058 (patch)
tree047dfd54ec77992eb816e7b2250fec5f584eb1fb /src/test/regress/output
parentfb627b76ccc4c7074e37b6b94155864f6cbd1b23 (diff)
downloadpostgresql-782eefc580a503db4773cd177b17dcc6fd33b058.tar.gz
Create a standard function pg_sleep() to sleep for a specified amount of time.
Replace the former ad-hoc implementation used in the regression tests. Joachim Wieland
Diffstat (limited to 'src/test/regress/output')
-rw-r--r--src/test/regress/output/create_function_1.source4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test/regress/output/create_function_1.source b/src/test/regress/output/create_function_1.source
index 7511c3f8d6..ed275b1f48 100644
--- a/src/test/regress/output/create_function_1.source
+++ b/src/test/regress/output/create_function_1.source
@@ -47,10 +47,6 @@ CREATE FUNCTION set_ttdummy (int4)
RETURNS int4
AS '@abs_builddir@/regress@DLSUFFIX@'
LANGUAGE 'C' STRICT;
-CREATE FUNCTION do_sleep (int4)
- RETURNS void
- AS '@abs_builddir@/regress@DLSUFFIX@'
- LANGUAGE 'C' STRICT;
-- Things that shouldn't work:
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE sql
AS 'SELECT ''not an integer'';';