diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-07-20 03:54:19 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-07-20 03:54:19 +0000 |
commit | 013ed0bd814218076385de8bb8438e2020abdf50 (patch) | |
tree | 8ccb44ad89c17df8a9f7f10a65b6340157b91649 /doc/src | |
parent | b25749cc64995ae668f6744765169b354a7f43be (diff) | |
download | postgresql-013ed0bd814218076385de8bb8438e2020abdf50.tar.gz postgresql-013ed0bd814218076385de8bb8438e2020abdf50.zip |
Add \conninfo command to psql, to show current connection info.
David Christensen. Reviewed by Steve Singer. Some further changes by me.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 48391117a81..4ea66a30d5a 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.245 2010/07/10 00:50:24 rhaas Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.246 2010/07/20 03:54:19 rhaas Exp $ PostgreSQL documentation --> @@ -781,6 +781,16 @@ testdb=> </varlistentry> <varlistentry> + <term><literal>\conninfo</literal></term> + <listitem> + <para> + Outputs connection information about the current database + connection. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><literal>\copy { <replaceable class="parameter">table</replaceable> [ ( <replaceable class="parameter">column_list</replaceable> ) ] | ( <replaceable class="parameter">query</replaceable> ) } { <literal>from</literal> | <literal>to</literal> } { <replaceable class="parameter">filename</replaceable> | stdin | stdout | pstdin | pstdout } |