Function Error Response Is Not Clear - Mailing list pgsql-bugs

From Luke Muther
Subject Function Error Response Is Not Clear
Date
Msg-id CACavRX+U2mZ2-K7M=QqLOJz_tzviDdvZHVBe=AXdZxCFD4_+Dw@mail.gmail.com
Whole thread Raw
Responses Re: Function Error Response Is Not Clear
List pgsql-bugs
To whom it may concern,

Some functions if they are missing the correct arguments give vague error messages while others give specific ones.

Specific error message example query 1:
SELECT sum();
Specific error message example output 1:
ERROR:  function sum() does not exist
LINE 1: SELECT sum();
                            ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.

Specific error message example query 2:
SELECT sum();
Specific error message example output 2:
ERROR:  function lower() does not exist
LINE 1: SELECT lower();
                            ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.

Vague error message example query 1:
SELECT nullif();
Vague error message example output 1:
ERROR:  syntax error at or near ")"
LINE 1: SELECT nullif();
                                    ^

Vague error message example query 2:
SELECT nullif(1);
Vague error message example output 2:
ERROR:  syntax error at or near ")"
LINE 1: SELECT nullif(1);
                                      ^

Vague error message example query 1:
SELECT coalesce();
Vague error message example output 1:
ERROR:  syntax error at or near ")"
LINE 1: SELECT coalesce();
                                           ^

These examples it is clear the function is the issue, but in my actual query there were many parentheses nearby so I thought I had mismatched parentheses for a while and it sent me hunting for the wrong thing wasting precious time on a production bugfix mid-crisis. I do not know if any other function besides NULLIF and COALESCE are affected by this. They are just the two I happened to test.

Best,
Luke

pgsql-bugs by date:

Previous
From: Joseph Ayers
Date:
Subject: Re: BUG #18940: PostgreSQL 18beta1 fails 'collate.windows.win1252' regression when building with MSYS/mingw
Next
From: Amit Kapila
Date:
Subject: Re: Logical replication 'invalid memory alloc request size 1585837200' after upgrading to 17.5