Re: Bogus EXPLAIN results with column aliases for mismatched partitions
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Etsuro Fujita <etsuro.fujita@gmail.com>
Cc: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2019-12-03T17:12:09Z
Lists: pgsql-hackers
Etsuro Fujita <etsuro.fujita@gmail.com> writes: > On Tue, Dec 3, 2019 at 6:45 AM Tom Lane <tgl@sss.pgh.pa.us> wrote: >> Concretely, I'm thinking of the attached (on top of the other patch, >> which I just pushed). This agrees exactly with what ExplainTargetRel >> does for regular scans. > Thanks for the patch! (The patch didn't apply to HEAD cleanly, > though.) I like consistency, so +1 for the change. Yeah, 55a1954da probably changed the expected output from what that has. I'll clean it up and push. >> One could make an argument that we should schema-qualify, regardless >> of the "verbose" flag, if the output format isn't EXPLAIN_FORMAT_TEXT. >> That would reduce the amount of variability that plan analysis tools >> have to cope with. However, ExplainTargetRel itself doesn't provide >> the schema in non-verbose mode. Maybe it should, ie we should change >> it like ... > Seems like another issue to me. Agreed. When/if we change that, we could make this code follow along. regards, tom lane
Commits
-
Further sync postgres_fdw's "Relations" output with the rest of EXPLAIN.
- bf39b3af6a9c 13.0 landed
-
Fix EXPLAIN's column alias output for mismatched child tables.
- 55a1954da16e 13.0 landed
-
Add a reverse-translation column number array to struct AppendRelInfo.
- ce76c0ba53e4 13.0 landed
-
Make postgres_fdw's "Relations" output agree with the rest of EXPLAIN.
- 4526951d564a 13.0 landed
-
Allow access to child table statistics if user can read parent table.
- 553d2ec2710b 13.0 cited