We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d39b268 commit e12cd16Copy full SHA for e12cd16
examples/custom_scan_function.sql
@@ -90,9 +90,9 @@ BEGIN
90
parm1 := TRIM(SUBSTR(fdecl, pos, POSITION(')' IN fdecl) - pos + 1));
91
-- RETURN NEXT (ts , concat('#### ', fdecl )); -- Really Just Debug!
92
BEGIN
93
- SELECT TO_REGPROC(fname)::oid INTO foid; -- This function will not throw an exception, just returns NULL
+ foid := TO_REGPROC(fname)::oid; -- This function will not throw an exception, just returns NULL
94
-- REPLACES the error block
95
- IF (foid IS NULL) THEN
+ IF foid IS NULL THEN
96
check_msg := '#### Either No Such function or No Paramters!';
97
RETURN NEXT;
98
CONTINUE;
0 commit comments