diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-07-29 14:49:48 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-07-29 14:49:48 +0900 |
commit | 15c6ede04577f856f702bf0a032297de667f382a (patch) | |
tree | a293fbaed9c574e29cdc5c8793ba55f504335b11 /src | |
parent | 856de3b39cf6041338b286a99257c324ce647f4e (diff) | |
download | postgresql-15c6ede04577f856f702bf0a032297de667f382a.tar.gz postgresql-15c6ede04577f856f702bf0a032297de667f382a.zip |
Fix typo in tab-complete.c
Introduced in b048326.
Reported-by: Jeff Davis
Discussion: https://postgr.es/m/10785e3e9456a5d761164d3e60d9c4981b80e321.camel@j-davis.com
Diffstat (limited to 'src')
-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 cc13fc05bba..064892bade6 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -2145,7 +2145,7 @@ psql_completion(const char *text, int start, int end) "TABLESPACE", "UNLOGGED", "WITH", "WITHOUT"); /* - * If we have ALTER TABLE <smt> SET ACCESS METHOD provide a list of table + * If we have ALTER TABLE <sth> SET ACCESS METHOD provide a list of table * AMs. */ else if (Matches("ALTER", "TABLE", MatchAny, "SET", "ACCESS", "METHOD")) |