mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Pass collations to functions in FunctionCallInfoData, not FmgrInfo.
Since collation is effectively an argument, not a property of the function, FmgrInfo is really the wrong place for it; and this becomes critical in cases where a cached FmgrInfo is used for varying purposes that might need different collation settings. Fix by passing it in FunctionCallInfoData instead. In particular this allows a clean fix for bug #5970 (record_cmp not working). This requires touching a bit more code than the original method, but nobody ever thought that collations would not be an invasive patch...
This commit is contained in:
@ -96,6 +96,11 @@ get_ts_parser_func(DefElem *defel, int attnum)
|
||||
break;
|
||||
case Anum_pg_ts_parser_prslextype:
|
||||
nargs = 1;
|
||||
/*
|
||||
* Note: because the lextype method returns type internal, it must
|
||||
* have an internal-type argument for security reasons. The
|
||||
* argument is not actually used, but is just passed as a zero.
|
||||
*/
|
||||
break;
|
||||
default:
|
||||
/* should not be here */
|
||||
@ -1947,7 +1952,7 @@ getTokenTypes(Oid prsId, List *tokennames)
|
||||
elog(ERROR, "method lextype isn't defined for text search parser %u",
|
||||
prsId);
|
||||
|
||||
/* OidFunctionCall0 is absent */
|
||||
/* lextype takes one dummy argument */
|
||||
list = (LexDescr *) DatumGetPointer(OidFunctionCall1(prs->lextypeOid,
|
||||
(Datum) 0));
|
||||
|
||||
|
Reference in New Issue
Block a user