]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix bogus tab-completion rule for CREATE PUBLICATION.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 21 Sep 2018 19:58:37 +0000 (15:58 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 21 Sep 2018 19:58:37 +0000 (15:58 -0400)
commite8d118fe859cdbae8b7dafefd126f31105f3aaab
treef1a83815f9b4e5d29b63dbda9c1659d9d38569ff
parent917fe6a48218c3dcbb74129da9ec69b524c45f47
Fix bogus tab-completion rule for CREATE PUBLICATION.

You can't use "FOR TABLE" as a single Matches argument, because readline
will consider that input to be two words not one.  It's necessary to make
the pattern contain two arguments.

The case accidentally worked anyway because the words_after_create
test fired ... but only for the first such table name.

Noted by Edmund Horner, though this isn't exactly his proposed fix.
Backpatch to v10 where the faulty code came in.

Discussion: https://postgr.es/m/CAMyN-kDe=gBmHgxWwUUaXuwK+p+7g1vChR7foPHRDLE592nJPQ@mail.gmail.com
src/bin/psql/tab-complete.c