mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
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
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user