1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-24 09:27:52 +03:00

Adjust subquery qual pushdown rules to be more forgiving: if a qual

refers to a non-DISTINCT output column of a DISTINCT ON subquery, or
if it refers to a function-returning-set, we cannot push it down.
But the old implementation refused to push down *any* quals if the
subquery had any such 'dangerous' outputs.  Now we just look at the
output columns actually referenced by each qual expression.  More code
than before, but probably no slower since we don't make unnecessary checks.
This commit is contained in:
Tom Lane
2003-03-22 01:49:38 +00:00
parent e43094b124
commit 05f916e6ad
4 changed files with 111 additions and 63 deletions

View File

@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
* parse_clause.h
*
* handle clauses in parser
*
*
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: parse_clause.h,v 1.29 2002/06/20 20:29:51 momjian Exp $
* $Id: parse_clause.h,v 1.30 2003/03/22 01:49:38 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -30,5 +30,6 @@ extern List *transformDistinctClause(ParseState *pstate, List *distinctlist,
extern List *addAllTargetsToSortList(List *sortlist, List *targetlist);
extern Index assignSortGroupRef(TargetEntry *tle, List *tlist);
extern bool targetIsInSortList(TargetEntry *tle, List *sortList);
#endif /* PARSE_CLAUSE_H */