diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-02-11 21:25:20 -0500 | 
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-02-11 21:25:57 -0500 | 
| commit | 1214749901fc3c66732cfd9f276b989635c01360 (patch) | |
| tree | 8c2fa16c2ac4a79cb0408b982b85de7d7c960bbf /src/bin/psql/tab-complete.c | |
| parent | 60141eefaf28e4ff5e406952740423dd6fd16266 (diff) | |
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
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 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);  	} | 
