BUG #17772: small glitch with autocompletion on CREATE DATABASE

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #17772: small glitch with autocompletion on CREATE DATABASE
Дата
Msg-id 17772-2e4a8cf89f86a1a5@postgresql.org
обсуждение исходный текст
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      17772
Logged by:          Andrey Lizenko
Email address:      lizenko79@gmail.com
PostgreSQL version: 15.1
Operating system:   Ubuntu 20.04.5 LTS
Description:

Hi, here is a very minor issue with a native psql client:

postgres=# create role atest login;
CREATE ROLE

postgres=# create role btest login;
CREATE ROLE

postgres=# create database atestdb owner to
<Pressing TAB here, nothing happens, roles list expected>

postgres=# create database atestdb owner atest;
CREATE DATABASE
<however, it works>

postgres=# reassign owned by atest to btest ;
REASSIGN OWNED
<it works also in terms of autocomplete>

postgres@xxx:~$ psql
psql (15.1 (Ubuntu 15.1-1.pgdg20.04+1))
Type "help" for help.

postgres=# show server_version;
          server_version
----------------------------------
 15.1 (Ubuntu 15.1-1.pgdg20.04+1)
(1 row)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: Crash during backend start when low on memory
Следующее
От: Andrey Lizenko
Дата:
Сообщение: Re: BUG #17772: small glitch with autocompletion on CREATE DATABASE