diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-12-29 01:13:37 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-12-29 01:13:37 +0000 |
commit | a01b085c78e11838e2058ce032425079ded6edea (patch) | |
tree | 575898e9c06c496b39a66260e62242a2b8aee2d1 /src/include/parser/parse_clause.h | |
parent | 4ce24c8aa98b26f0b070464ce118ef2a1901064e (diff) | |
download | postgresql-a01b085c78e11838e2058ce032425079ded6edea.tar.gz |
Cleanup of UNION ALL fix. Manual page updates.
Diffstat (limited to 'src/include/parser/parse_clause.h')
-rw-r--r-- | src/include/parser/parse_clause.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/parser/parse_clause.h b/src/include/parser/parse_clause.h index 272bbc17b5..d402faeb11 100644 --- a/src/include/parser/parse_clause.h +++ b/src/include/parser/parse_clause.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_clause.h,v 1.3 1997/11/26 03:43:09 momjian Exp $ + * $Id: parse_clause.h,v 1.4 1997/12/29 01:13:28 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -26,6 +26,7 @@ extern List *transformGroupClause(ParseState *pstate, List *grouplist, extern List *transformSortClause(ParseState *pstate, List *orderlist, List *targetlist, char *uniqueFlag); +extern List *transformUnionClause(List *unionClause, List *targetlist); #endif /* PARSE_CLAUSE_H */ |