aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1997-04-27 19:27:34 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1997-04-27 19:27:34 +0000
commit9cdc80899abb7c9cc39884ce3d6bd2bd9a6e210c (patch)
treebf7ea6b7ea9d68ff189a3525a67e800335775cb2
parentff5edbd9e67526a3dab456aea0f1d23a726ee1a7 (diff)
downloadpostgresql-9cdc80899abb7c9cc39884ce3d6bd2bd9a6e210c.tar.gz
postgresql-9cdc80899abb7c9cc39884ce3d6bd2bd9a6e210c.zip
Fix path name templates.
-rw-r--r--src/test/regress/input/create_function_1.source4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/input/create_function_1.source b/src/test/regress/input/create_function_1.source
index ed90e546268..41e76604b0c 100644
--- a/src/test/regress/input/create_function_1.source
+++ b/src/test/regress/input/create_function_1.source
@@ -5,11 +5,11 @@
CREATE FUNCTION widget_in(opaque)
RETURNS widget
- AS '_CWD_/regress_DLSUFFIX_'
+ AS '_CWD_/../regress_DLSUFFIX_'
LANGUAGE 'c';
CREATE FUNCTION widget_out(opaque)
RETURNS opaque
- AS '_CWD_/regress_DLSUFFIX_'
+ AS '_CWD_/../regress_DLSUFFIX_'
LANGUAGE 'c';