diff options
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 473706246d0..61779c69633 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -2368,7 +2368,7 @@ psql_completion(char *text, int start, int end) /* Complete LOCK [TABLE] <table> with "IN" */ else if ((pg_strcasecmp(prev2_wd, "LOCK") == 0 && - pg_strcasecmp(prev_wd, "TABLE")) || + pg_strcasecmp(prev_wd, "TABLE") != 0) || (pg_strcasecmp(prev2_wd, "TABLE") == 0 && pg_strcasecmp(prev3_wd, "LOCK") == 0)) COMPLETE_WITH_CONST("IN"); |