mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
Fix tab completion for UPDATE.
Previously it suggested an extra "=" after "SET x=". Reported-by: Kyotaro Horiguchi Discussion: https://postgr.es/m/CA%2BhUKGLk%3D0yLDjfviONJLzcHEzygj%3Dx6VbGH43LnXbBUvQb52g%40mail.gmail.com
This commit is contained in:
parent
7bdc6556fb
commit
5b51bbfbd5
@ -3487,7 +3487,7 @@ psql_completion(const char *text, int start, int end)
|
|||||||
else if (TailMatches("UPDATE", MatchAny, "SET"))
|
else if (TailMatches("UPDATE", MatchAny, "SET"))
|
||||||
COMPLETE_WITH_ATTR(prev2_wd, "");
|
COMPLETE_WITH_ATTR(prev2_wd, "");
|
||||||
/* UPDATE <table> SET <attr> = */
|
/* UPDATE <table> SET <attr> = */
|
||||||
else if (TailMatches("UPDATE", MatchAny, "SET", MatchAny))
|
else if (TailMatches("UPDATE", MatchAny, "SET", MatchAnyExcept("*=")))
|
||||||
COMPLETE_WITH("=");
|
COMPLETE_WITH("=");
|
||||||
|
|
||||||
/* USER MAPPING */
|
/* USER MAPPING */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user