Skip temporary table schema name from explain-verbose output.

Поиск
Список
Период
Сортировка
От Amul Sul
Тема Skip temporary table schema name from explain-verbose output.
Дата
Msg-id CAAJ_b97W=QaGmag9AhWNbmx3uEYsNkXWL+OVW1_E1D3BtgWvtw@mail.gmail.com
обсуждение исходный текст
Ответы Re: Skip temporary table schema name from explain-verbose output.
Список pgsql-hackers
Hi,

Temporary tables usually gets a unique schema name, see this:

postgres=# create temp table foo(i int);
CREATE TABLE
postgres=# explain verbose select * from foo;
                           QUERY PLAN
-----------------------------------------------------------------
 Seq Scan on pg_temp_3.foo  (cost=0.00..35.50 rows=2550 width=4)
   Output: i
(2 rows)

The problem is that explain-verbose regression test output becomes
unstable when several concurrently running tests operate on temporary
tables.

I was wondering can we simply skip the temporary schema name from the
explain-verbose output or place the "pg_temp" schema name?

Thoughts/Suggestions?

Regares,
Amul



В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Joel Jacobson"
Дата:
Сообщение: Re: [PATCH] Re: pg_identify_object_as_address() doesn't support pg_event_trigger oids
Следующее
От: vignesh C
Дата:
Сообщение: Re: Replication slot stats misgivings