mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
This commit moves expand_inherited_tables and underlings from
optimizer/prep/prepunionc.c to optimizer/utils/inherit.c.
Also, all of the AppendRelInfo-based expression manipulation routines
are moved to optimizer/utils/appendinfo.c.
No functional code changes. One exception is the introduction of
make_append_rel_info, but that's still just moving around code.
Also, stop including <limits.h> in prepunion.c, which no longer needs
it since
|
||
|---|---|---|
| .. | ||
| appendinfo.c | ||
| clauses.c | ||
| inherit.c | ||
| joininfo.c | ||
| Makefile | ||
| orclauses.c | ||
| pathnode.c | ||
| placeholder.c | ||
| plancat.c | ||
| predtest.c | ||
| relnode.c | ||
| restrictinfo.c | ||
| tlist.c | ||
| var.c | ||