mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Fix tab completion for CREATE TYPE in psql
Oversight in 7bdc655.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/5da8e325-c665-da95-21e0-c8a99ea61fbf@gmail.com
This commit is contained in:
parent
c96581abe4
commit
71851e9ab7
1 changed files with 1 additions and 1 deletions
|
|
@ -2705,7 +2705,7 @@ psql_completion(const char *text, int start, int end)
|
|||
if (TailMatches("(|*,"))
|
||||
COMPLETE_WITH("INPUT", "OUTPUT", "RECEIVE", "SEND",
|
||||
"TYPMOD_IN", "TYPMOD_OUT", "ANALYZE",
|
||||
"INTERNALLENGTH", "PASSBYVALUE", "ALIGNMENT",
|
||||
"INTERNALLENGTH", "PASSEDBYVALUE", "ALIGNMENT",
|
||||
"STORAGE", "LIKE", "CATEGORY", "PREFERRED",
|
||||
"DEFAULT", "ELEMENT", "DELIMITER",
|
||||
"COLLATABLE");
|
||||
|
|
|
|||
Loading…
Reference in a new issue