pgsql: Add a very specific hint for the case that we're unable to locate

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add a very specific hint for the case that we're unable to locate
Date: 2010-08-05 21:45:45
Message-ID: [email protected]
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Add a very specific hint for the case that we're unable to locate a function
matching a call like f(x, ORDER BY y,z). It could be that what the user
really wants is f(x,z ORDER BY y). We now have pretty conclusive evidence
that many people won't understand this problem without concrete guidance,
so give it to them. Per further discussion of the string_agg() problem.

Tags:
----
REL9_0_STABLE

Modified Files:
--------------
pgsql/src/backend/parser:
parse_func.c (r1.224.2.1 -> r1.224.2.2)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_func.c?r1=1.224.2.1&r2=1.224.2.2)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2010-08-06 03:46:23 pgsql: Fix incorrect pathname in comment.
Previous Message Tom Lane 2010-08-05 21:45:35 pgsql: Add a very specific hint for the case that we're unable to locate