Better psql tab-completion support for schemas and tables

Поиск
Список
Период
Сортировка
От Greg Sabino Mullane
Тема Better psql tab-completion support for schemas and tables
Дата
Msg-id 1192983454.18255.72.camel@greg-laptop
обсуждение исходный текст
Ответы Re: Better psql tab-completion support for schemas and tables  (Alvaro Herrera <alvherre@commandprompt.com>)
Список pgsql-patches
Full support for all schema and table name combinations when
getting a list of attributes. All of the following will now work:

select * from information_schema.columns where <tab>
select * from foo where <tab>
select * from "user" where <tab>
select * from "foo" where <tab>
select * from "Uppercase".lower where <tab>
select * from "gtsm.com"."foo.Bar" where <tab>
select * from "GTSM.com".foo where <tab>

Also applies to other places that get lists of columns: insert into,
alter table, create index, etc.

--
Greg Sabino Mullane greg@turnstep.com
PGP Key: 0x14964AC8 200710211212
http://biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8


Вложения

В списке pgsql-patches по дате отправления:

Предыдущее
От: "Heikki Linnakangas"
Дата:
Сообщение: Re: [HACKERS] Why copy_relation_data only use wal whenWALarchivingis enabled
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: Better psql tab-completion support for schemas and tables