Re: Set query_id for query contained in utility statement - Mailing list pgsql-hackers

From jian he
Subject Re: Set query_id for query contained in utility statement
Date
Msg-id CACJufxEQoSsU_BN8mzHeKckP5PUOKRxvDG419-wc3w9a68BNaQ@mail.gmail.com
Whole thread Raw
In response to Set query_id for query contained in utility statement  (Anthonin Bonnefoy <anthonin.bonnefoy@datadoghq.com>)
Responses Re: Set query_id for query contained in utility statement
List pgsql-hackers
hi.

explain(verbose) SELECT 1, 2, 3\;              explain SELECT 1, 2, 3, 4;
will transformed to
explain(verbose) SELECT 1, 2, 3;              explain SELECT 1, 2, 3, 4;

it seems to me your patch care about following position.
explain(verbose) SELECT 1, 2, 3;              explain SELECT 1, 2, 3, 4;
                                                      ^


but this patch [1] at another thread will get the top level statement
(passed the raw parse, no syntax error) beginning more effortless.
explain(verbose) SELECT 1, 2, 3;              explain SELECT 1, 2, 3, 4;
^                                                                  ^

can you try to looking at [1]. it may help to resolve this patch problem.


[1] https://www.postgresql.org/message-id/2245576.1728418678%40sss.pgh.pa.us



pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: FOREIGN TABLE and IDENTITY columns
Next
From: Peter Eisentraut
Date:
Subject: Re: simplify regular expression locale global variables