diff options
| author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-04-29 04:32:50 +0000 |
|---|---|---|
| committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-04-29 04:32:50 +0000 |
| commit | a1fbd470a9ae934bf2316740c06b0cf88607e6e8 (patch) | |
| tree | 392b0b71c2fc592f644a2e5103e254ae72f7eab6 /src/include/nodes/parsenodes.h | |
| parent | f4279c46e7776a3f194d08a2e2870239e44b4c65 (diff) | |
| download | postgresql-a1fbd470a9ae934bf2316740c06b0cf88607e6e8.tar.gz | |
Fix GroupBy: enable functions over aggregates and GroupBy-ed fields
in target list.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
| -rw-r--r-- | src/include/nodes/parsenodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 7ae2cd6e98..d29e66bcf5 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.14 1997/04/23 05:58:06 vadim Exp $ + * $Id: parsenodes.h,v 1.15 1997/04/29 04:28:59 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -774,7 +774,7 @@ typedef struct SortClause { */ typedef struct GroupClause { NodeTag type; - Resdom *resdom; /* attributes to group on */ + TargetEntry *entry; /* attributes to group on */ Oid grpOpoid; /* the sort operator to use */ } GroupClause; |
