Hi,
On Sat, Aug 19, 2023 at 03:26:06PM +0200, Pierre Forstmann wrote:
>
> I am trying to get the list of all relations used in a SELECT query using
> the post parse analyze hook.
>
> I can get all relations from top level FROM clause but I cannot get them
> for a simple subquery like:
>
> select * from t1 where x1=(select max(x2) from t2);
You're missing at least the sublinks. Since you're looking at
AcquireRewriteLocks() as an example, look at how acquireLocksOnSubLinks() is
being called.
In general, if you're not sure of how some constructs are represented in a
Query the easiest way to get a good overview is to simply do something like
static void pgds_build_rel_array(Query *query)
{
[...]
elog(WARNING, "found %s", nodeToString(query));
You will get a textual representation of the query (or any specific node if
needed) in the client and server log, so you can easily look for a given relid,
Var or anything and identify what you were missing and adapt your walker
function.