Re: [HACKERS] \h open

2013-09-16 Thread Kevin Grittner
Oleg Bartunov wrote: > I noticed there is nothing available in built-in psql help about > OPEN command. Does it intentional ? > > postgres=# \h open > No help available for "open". > Try \h with no arguments to see available help. PostgreSQL does not include OPEN as a SQL command: http://www.po

Re: [HACKERS] \h open

2013-09-15 Thread Heikki Linnakangas
On 16.09.2013 07:43, Oleg Bartunov wrote: I noticed there is nothing available in built-in psql help about OPEN command. Does it intentional ? That's because there is no OPEN command. PL/pgSQL does have an OPEN statement, but that's just PL/pgSQL. And ecpg too, but again that's handled by ecp

[HACKERS] \h open

2013-09-15 Thread Oleg Bartunov
I noticed there is nothing available in built-in psql help about OPEN command. Does it intentional ? postgres=# \h open No help available for "open". Try \h with no arguments to see available help. Oleg