From: | Michael Paquier <michael(at)paquier(dot)xyz> |
---|---|
To: | Greg Sabino Mullane <htamfids(at)gmail(dot)com> |
Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Improve pg_stat_statements by making jumble handle savepoint names better |
Date: | 2023-07-24 22:46:05 |
Message-ID: | ZL7/LRon64TzaKx6@paquier.xyz |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Mon, Jul 24, 2023 at 04:09:23PM -0400, Greg Sabino Mullane wrote:
> Without the patch, the only solution is to keep raising
> pg_stat_statements.max to larger and larger values to compensate for the
> pollution of the
> statement pool.
Yes, that can be painful depending on your workload.
bool chain; /* AND CHAIN option */
+ int location; /* token location, or -1 if unknown */
} TransactionStmt;
[...]
+ if ($f eq 'savepoint_name') {
+ print $jff "\tJUMBLE_LOCATION(location);\n";
+ next;
+ }
Shouldn't this new field be marked as query_jumble_location instead of
forcing the perl script to do that? Or is there something in the
structure of TransactionStmt that makes the move difficult because of
the other transaction commands supported?
Testing for new query patterns is very important for such patches.
Could you add something in pg_stat_statements's utility.sql? I think
that you should check the compilations of at least two savepoints with
different names to see that they compile the same query ID, for a
bunch of patterns in the grammar, say:
BEGIN;
SAVEPOINT p1;
ROLLBACK TO SAVEPOINT p1;
ROLLBACK TRANSACTION TO SAVEPOINT p1;
RELEASE SAVEPOINT p1;
SAVEPOINT p2;
ROLLBACK TO SAVEPOINT p2;
ROLLBACK TRANSACTION TO SAVEPOINT p2;
RELEASE SAVEPOINT p2;
COMMIT;
--
Michael
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2023-07-24 22:46:52 | Re: [BUG] Crash on pgbench initialization. |
Previous Message | Ranier Vilela | 2023-07-24 22:04:27 | Re: Avoid unused value (src/fe_utils/print.c) |