From 1214749901fc3c66732cfd9f276b989635c01360 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 11 Feb 2011 21:25:20 -0500 Subject: Add support for multiple versions of an extension and ALTER EXTENSION UPDATE. This follows recent discussions, so it's quite a bit different from Dimitri's original. There will probably be more changes once we get a bit of experience with it, but let's get it in and start playing with it. This is still just core code. I'll start converting contrib modules shortly. Dimitri Fontaine and Tom Lane --- src/bin/psql/tab-complete.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bin/psql/tab-complete.c') diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 2c656068f82..a31281e431c 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -868,7 +868,7 @@ psql_completion(char *text, int start, int end) pg_strcasecmp(prev2_wd, "EXTENSION") == 0) { static const char *const list_ALTEREXTENSION[] = - {"ADD", "DROP", "SET SCHEMA", NULL}; + {"ADD", "DROP", "UPDATE", "SET SCHEMA", NULL}; COMPLETE_WITH_LIST(list_ALTEREXTENSION); } -- cgit v1.2.3