mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
Accept the noise-word ALL in aggregate function invocations for SQL92
compliance. Wish they were all that easy...
This commit is contained in:
parent
63746a90c1
commit
bd43ae0ecd
@ -11,7 +11,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.145 2000/02/19 08:25:49 thomas Exp $
|
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.146 2000/02/19 19:37:21 tgl Exp $
|
||||||
*
|
*
|
||||||
* HISTORY
|
* HISTORY
|
||||||
* AUTHOR DATE MAJOR EVENT
|
* AUTHOR DATE MAJOR EVENT
|
||||||
@ -4546,6 +4546,19 @@ c_expr: attr
|
|||||||
n->agg_distinct = false;
|
n->agg_distinct = false;
|
||||||
$$ = (Node *)n;
|
$$ = (Node *)n;
|
||||||
}
|
}
|
||||||
|
| func_name '(' ALL expr_list ')'
|
||||||
|
{
|
||||||
|
FuncCall *n = makeNode(FuncCall);
|
||||||
|
n->funcname = $1;
|
||||||
|
n->args = $4;
|
||||||
|
n->agg_star = false;
|
||||||
|
n->agg_distinct = false;
|
||||||
|
/* Ideally we'd mark the FuncCall node to indicate
|
||||||
|
* "must be an aggregate", but there's no provision
|
||||||
|
* for that in FuncCall at the moment.
|
||||||
|
*/
|
||||||
|
$$ = (Node *)n;
|
||||||
|
}
|
||||||
| func_name '(' DISTINCT expr_list ')'
|
| func_name '(' DISTINCT expr_list ')'
|
||||||
{
|
{
|
||||||
FuncCall *n = makeNode(FuncCall);
|
FuncCall *n = makeNode(FuncCall);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user