diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-10 19:35:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-10 19:35:01 +0000 |
commit | 8be9bd83acd43762cf0dc8a45229a693896e7755 (patch) | |
tree | 6688bc82949dda85af40ce312b137450c4cba95b /doc/src | |
parent | a5e6e9935714959db56607b327ce0f4ff68751c1 (diff) | |
download | postgresql-8be9bd83acd43762cf0dc8a45229a693896e7755.tar.gz postgresql-8be9bd83acd43762cf0dc8a45229a693896e7755.zip |
psql prints its version number in its startup message, per recent
discussion. Also, cause the \timing command to display time in a
format consistent with the backend's EXPLAIN ANALYZE output.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/manage.sgml | 4 | ||||
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 6 | ||||
-rw-r--r-- | doc/src/sgml/start.sgml | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/doc/src/sgml/manage.sgml b/doc/src/sgml/manage.sgml index 43dd8d5a955..786adb71965 100644 --- a/doc/src/sgml/manage.sgml +++ b/doc/src/sgml/manage.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/Attic/manage.sgml,v 1.21 2002/01/20 22:19:56 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/Attic/manage.sgml,v 1.22 2002/08/10 19:35:00 tgl Exp $ --> <Chapter Id="manage"> @@ -130,7 +130,7 @@ to try out the examples in this manual. You will be greeted with the following message: <ProgramListing> -Welcome to psql, the PostgreSQL interactive terminal. +Welcome to psql &version;, the PostgreSQL interactive terminal. Type: \copyright for distribution terms \h for help with SQL commands diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 48370d1e214..4ddc70d2120 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.70 2002/08/10 03:56:23 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.71 2002/08/10 19:35:00 tgl Exp $ PostgreSQL documentation --> @@ -488,7 +488,7 @@ PostgreSQL documentation the string <literal>=></literal>. For example, <programlisting> $ <userinput>psql testdb</userinput> -Welcome to psql, the PostgreSQL interactive terminal. +Welcome to psql &version;, the PostgreSQL interactive terminal. Type: \copyright for distribution terms \h for help with SQL commands @@ -1582,7 +1582,7 @@ lo_import 152801 <term><literal>\timing</literal></term> <listitem> <para> - Toggles a display of how long each query takes in seconds. + Toggles a display of how long each query takes, in milliseconds. </para> </listitem> </varlistentry> diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml index 439f65e98f0..a1adb712ce1 100644 --- a/doc/src/sgml/start.sgml +++ b/doc/src/sgml/start.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/start.sgml,v 1.22 2002/01/20 22:19:56 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/start.sgml,v 1.23 2002/08/10 19:35:00 tgl Exp $ --> <chapter id="tutorial-start"> @@ -313,7 +313,7 @@ createdb: database creation failed In <command>psql</command>, you will be greeted with the following message: <screen> -Welcome to psql, the PostgreSQL interactive terminal. +Welcome to psql &version;, the PostgreSQL interactive terminal. Type: \copyright for distribution terms \h for help with SQL commands |