Re: Support tab completion for upper character inputs in psql - Mailing list pgsql-hackers

From Kyotaro Horiguchi
Subject Re: Support tab completion for upper character inputs in psql
Date
Msg-id 20210423.122536.1726752757845964718.horikyota.ntt@gmail.com
Whole thread Raw
In response to Re: Support tab completion for upper character inputs in psql  (Kyotaro Horiguchi <horikyota.ntt@gmail.com>)
List 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: Support tab completion for upper character inputs in psql
Next
From: Kyotaro Horiguchi
Date:
Subject: Re: Support tab completion for upper character inputs in psql