On Thu, Dec 18, 2025 at 6:23 PM Julien Tachoires wrote:
>
> Hi,
>
> pg_overexplain's documentation mentions that the definition of
> RangeTblEntry is in nodes/plannodes.h, which seems to be wrong as it
> is defined in nodes/parsenodes.h. Please find a small patch fixing this.
Thanks for the patch
LGTM
The RangeTblEntry struct is indeed defined in parsenodes.h, not plannodes.h.
This patch corrects the incorrect reference.
All tests pass with make check-world.
Regards,
Shixin Wang
Mon Sep 17 00:00:00 2001
From: Julien Tachoires
Date: Thu, 18 Dec 2025 10:14:19 +0100
Subject: [PATCH] Fix wrong reference in pg_overexplain's doc.
This commit fixes the location of the definition of RangeTblEntry
in pg_overexplain's doc.
---
doc/src/sgml/pgoverexplain.sgml | 2 +-