mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-13 09:57:02 +08:00
Small code simplifications
strVal() can be used in a couple of places instead of coding the same thing by hand.
This commit is contained in:
@ -13890,7 +13890,7 @@ func_expr_common_subexpr:
|
||||
* Convert SystemTypeName() to SystemFuncName() even though
|
||||
* at the moment they result in the same thing.
|
||||
*/
|
||||
$$ = (Node *) makeFuncCall(SystemFuncName(((Value *) llast($5->names))->val.str),
|
||||
$$ = (Node *) makeFuncCall(SystemFuncName(strVal(llast($5->names))),
|
||||
list_make1($3),
|
||||
COERCE_EXPLICIT_CALL,
|
||||
@1);
|
||||
|
||||
Reference in New Issue
Block a user