diff options
author | Peter Eisentraut | 2016-05-31 20:45:02 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-05-31 20:45:02 +0000 |
commit | 9ee56dfeee0389d61020db3c6a47bd2690bd040e (patch) | |
tree | 931ed13b6b9cc527f1d641dc77882ed38ff2a9cd | |
parent | 22b27b4c9eda1ef166309be1f5702277e3a805f8 (diff) |
doc: Update version() and current_date output in tutorial
While the version number is automatically updated in the example output,
the other details looked a bit dated.
suggested by [email protected]
-rw-r--r-- | doc/src/sgml/start.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/start.sgml b/doc/src/sgml/start.sgml index e06337aa0e..1ce1a24e10 100644 --- a/doc/src/sgml/start.sgml +++ b/doc/src/sgml/start.sgml @@ -361,15 +361,15 @@ mydb=# <indexterm><primary>version</primary></indexterm> <screen> <prompt>mydb=></prompt> <userinput>SELECT version();</userinput> - version - ----------------------------------------------------------------------- - PostgreSQL &version; on i586-pc-linux-gnu, compiled by GCC 2.96, 32-bit + version +------------------------------------------------------------------------------------------ + PostgreSQL &version; on x86_64-pc-linux-gnu, compiled by gcc (Debian 4.9.2-10) 4.9.2, 64-bit (1 row) <prompt>mydb=></prompt> <userinput>SELECT current_date;</userinput> date ------------ - 2002-08-31 + 2016-01-07 (1 row) <prompt>mydb=></prompt> <userinput>SELECT 2 + 2;</userinput> |