BUG #17772: small glitch with autocompletion on CREATE DATABASE

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: lizenko79(at)gmail(dot)com
Subject: BUG #17772: small glitch with autocompletion on CREATE DATABASE
Date: 2023-02-06 01:51:30
Message-ID: 17772-2e4a8cf89f86a1a5@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 17772
Logged by: Andrey Lizenko
Email address: lizenko79(at)gmail(dot)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(at)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)

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Andrey Lizenko 2023-02-06 02:41:55 Re: BUG #17772: small glitch with autocompletion on CREATE DATABASE
Previous Message Andres Freund 2023-02-05 23:18:14 Re: Crash during backend start when low on memory