diff options
| author | Tom Lane | 1999-08-26 05:09:06 +0000 |
|---|---|---|
| committer | Tom Lane | 1999-08-26 05:09:06 +0000 |
| commit | 37d20eb8558607e18816849a0a3f3d941317dc13 (patch) | |
| tree | 95109e75dd63b2c488256f68c63b9386b9ac9d3c /src/include | |
| parent | 5adebf83b6cffbf4133ff97dbe6d5da0ff59bff1 (diff) | |
Clean up some mistakes in handling of uplevel Vars in planner.
Most parts of the planner should ignore, or indeed never even see, uplevel
Vars because they will be or have been replaced by Params. There were a
couple of places that got it wrong though, probably my fault from recent
changes...
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/optimizer/var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/optimizer/var.h b/src/include/optimizer/var.h index 440b62f49ad..e2d5390876b 100644 --- a/src/include/optimizer/var.h +++ b/src/include/optimizer/var.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: var.h,v 1.9 1999/08/22 20:14:57 tgl Exp $ + * $Id: var.h,v 1.10 1999/08/26 05:06:17 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -17,6 +17,6 @@ extern List *pull_varnos(Node *me); extern bool contain_var_clause(Node *clause); -extern List *pull_var_clause(Node *clause); +extern List *pull_var_clause(Node *clause, bool includeUpperVars); #endif /* VAR_H */ |
