On 11.11.2010 18:17, Tom Lane wrote:
BTW ... it strikes me there's another inconsistency between oidvectorin
and oidvectorrecv, namely that the former enforces a maximum of
FUNC_MAX_ARGS elements whereas the latter has no such limit.

Yes, it does:

        /* check length for consistency with oidvectorin() */
        if (ARR_DIMS(result)[0] > FUNC_MAX_ARGS)
                ereport(ERROR,
                                (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
                                 errmsg("oidvector has too many elements")));


I suspect you're looking at an old version, that was added quite recently.

--
  Heikki Linnakangas
  EnterpriseDB   http://www.enterprisedb.com

--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

Reply via email to