Re: Support tab completion for upper character inputs in psql

Поиск
Список
Период
Сортировка
От Kyotaro Horiguchi
Тема Re: Support tab completion for upper character inputs in psql
Дата
Msg-id 20210423.122536.1726752757845964718.horikyota.ntt@gmail.com
обсуждение исходный текст
Ответ на Re: Support tab completion for upper character inputs in psql  (Kyotaro Horiguchi <horikyota.ntt@gmail.com>)
Список pgsql-hackers
At Fri, 23 Apr 2021 11:58:12 +0900 (JST), Kyotaro Horiguchi <horikyota.ntt@gmail.com> wrote in 
> > Any further comment is very welcome.

Oh, I accidentally found a doubious behsbior.

=# alter table public.<tab>
public.c1    public.d1    public."t"   public.t     public."tt"  

The "t" and "tt" are needlessly lower-cased.

# \d
                     List of relations
 Schema |        Name        |       Type        |  Owner   
--------+--------------------+-------------------+----------
 public | T                  | partitioned table | horiguti
 public | TT                 | table             | horiguti
 public | c1                 | table             | horiguti
 public | d1                 | table             | horiguti
 public | t                  | partitioned table | horiguti

=# alter table public."<tab>
=# alter table public."t        -- candidates are "t" and "tt"?
=# alter table public."tt<tab>  -- nothing happenes
=# alter table public."TT<tab>  -- also nothing happenes

regards.

-- 
Kyotaro Horiguchi
NTT Open Source Software Center



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Support tab completion for upper character inputs in psql
Следующее
От: Kyotaro Horiguchi
Дата:
Сообщение: Re: Support tab completion for upper character inputs in psql