Function_error_message.patch

text/x-diff

Filename: Function_error_message.patch
Type: text/x-diff
Part: 0
Message: Correcting Error message

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: unified
File+
src/backend/parser/parse_func.c 1 1
diff --git a/src/backend/parser/parse_func.c b/src/backend/parser/parse_func.c
index 39123a7..0536b58 100644
--- a/src/backend/parser/parse_func.c
+++ b/src/backend/parser/parse_func.c
@@ -265,7 +265,7 @@ ParseFuncOrColumn(ParseState *pstate, List *funcname, List *fargs,
 		 * If we are dealing with the attribute notation rel.function, let the
 		 * caller handle failure.
 		 */
-		if (is_column)
+		if (is_column && fdresult != FUNCDETAIL_MULTIPLE)
 			return NULL;
 
 		/*