support fix query_id for temp table - Mailing list pgsql-general

From ma lz
Subject support fix query_id for temp table
Date
Msg-id OSZP286MB2253413D25A5D93BEA4F6459F2432@OSZP286MB2253.JPNP286.PROD.OUTLOOK.COM
Whole thread Raw
Responses Re: support fix query_id for temp table  (Michael Paquier <michael@paquier.xyz>)
List pgsql-general
session 1:
create temp table ttt ( a int );
insert into ttt values(3);                         -- query_id is XXX  from pg_stat_activity


session 2:
create temp table ttt ( a int );
insert into ttt values(3);                        -- query_id is YYY  from pg_stat_activity



I know temp table has different oid, so query_id is different, is there a way to use table name for temp table  instead of oid?


pgsql-general by date:

Previous
From: Laurenz Albe
Date:
Subject: Re: Postgresql BUG / Help Needed
Next
From: Michael Paquier
Date:
Subject: Re: support fix query_id for temp table