Replace the parser's namespace tree (which formerly had the same

Tom Lane <tgl@sss.pgh.pa.us>

Commit: a4996a895399a4b0363c7dace71fc6ce8acbc196
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2005-06-05T00:38:11Z
Releases: 8.1.0
Replace the parser's namespace tree (which formerly had the same
representation as the jointree) with two lists of RTEs, one showing
the RTEs accessible by qualified names, and the other showing the RTEs
accessible by unqualified names.  I think this is conceptually simpler
than what we did before, and it's sure a whole lot easier to search.
This seems to eliminate the parse-time bottleneck for deeply nested
JOIN structures that was exhibited by phil@vodafone.

Files