]> granicus.if.org Git - postgresql/commit
Move checking an explicit VARIADIC "any" argument into the parser.
authorAndrew Dunstan <andrew@dunslane.net>
Thu, 18 Jul 2013 15:52:12 +0000 (11:52 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Thu, 18 Jul 2013 15:52:12 +0000 (11:52 -0400)
commitd26888bc4d1e539a82f21382b0000fe5bbf889d9
tree45971c200f11e8b55af421cdadf012b4071f8ce1
parent405a468b02dd80a069b95c4eb9838cb6a562eddd
Move checking an explicit VARIADIC "any" argument into the parser.

This is more efficient and simpler . It does mean that an untyped NULL
can no longer be used in such cases, which should be mentioned in
Release Notes, but doesn't seem a terrible loss. The workaround is to
cast the NULL to some array type.

Pavel Stehule, reviewed by Jeevan Chalke.
src/backend/catalog/pg_aggregate.c
src/backend/parser/parse_func.c
src/backend/utils/adt/ruleutils.c
src/backend/utils/adt/varlena.c
src/include/parser/parse_func.h
src/test/regress/expected/text.out
src/test/regress/sql/text.sql