in psql i’m trying to create a database, but nothing really happens seems like psql is expecting me to continue with the prompt.
postgres=# CREATE DATABASE testdb1;
;
;
q
^CCancel request sent
ERROR: canceling statement due to user request
postgres=#
As you see finishing the prompt with semicolon does nothing just puts me on a different line.
I’ve tried different prompts like creating a user, which works fine, so my guess is i’m just missing something and doing something stupid.
I’m using:
- WSL Ubuntu 22.04.3 LTS
- Postgresql version 14
- psql (PostgreSQL) 14.12 (Ubuntu 14.12-0ubuntu0.22.04.1)
New contributor
panzi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
10