Re: \di+ cannot show the same name indexes

2023-07-13 Thread Julien Rouhaud
Hi, On Thu, Jul 13, 2023 at 03:17:17PM +0800, フブキダイスキ wrote: > After I create the same name index on the heap table and the temporary > table, I can only get the temporary table's index by \di+. > > create table t1(c1 int); > create temp table t2(c1 int); > > create index idx1 on t1(c1); > \di

\di+ cannot show the same name indexes

2023-07-13 Thread フブキダイスキ
Hi, After I create the same name index on the heap table and the temporary table, I can only get the temporary table's index by \di+. create table t1(c1 int); create temp table t2(c1 int); create index idx1 on t1(c1); \di+ List of relations Schema | Name | Type | Owner