diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-04-27 19:27:34 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1997-04-27 19:27:34 +0000 |
commit | 9cdc80899abb7c9cc39884ce3d6bd2bd9a6e210c (patch) | |
tree | bf7ea6b7ea9d68ff189a3525a67e800335775cb2 /src | |
parent | ff5edbd9e67526a3dab456aea0f1d23a726ee1a7 (diff) | |
download | postgresql-9cdc80899abb7c9cc39884ce3d6bd2bd9a6e210c.tar.gz postgresql-9cdc80899abb7c9cc39884ce3d6bd2bd9a6e210c.zip |
Fix path name templates.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/input/create_function_1.source | 4 |
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'; |