public inbox for [email protected]
help / color / mirror / Atom feedFrom: Bruce Momjian <[email protected]>
To: Erik Rijkers <[email protected]>
Cc: [email protected]
Subject: Re: readability tutorial example in pdf
Date: Wed, 4 Dec 2013 10:03:57 -0500
Message-ID: <[email protected]> (raw)
In-Reply-To: <[email protected]>
References: <[email protected]>
List-Unsubscribe: <mailto:[email protected]?body=unsub%20pgsql-docs>
On Sat, May 4, 2013 at 11:00:26PM +0200, Erik Rijkers wrote:
> The attached patch breaks code-example into two lines.
>
> In the pdf (A4) version this line is truncated by several words, making a tutorial example
> incomprehensible.
>
> (The line-break also shows up in the html vrsion but does not look particularly ugly there)
Agreed. I ended up splitting it into three lines; applied patch
attached.
--
Bruce Momjian <[email protected]> http://momjian.us
EnterpriseDB http://enterprisedb.com
+ Everyone has their own god. +
--
Sent via pgsql-docs mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs
Attachments:
[text/x-diff] doc.diff (731B, 2-doc.diff)
download | inline diff:
diff --git a/doc/src/sgml/advanced.sgml b/doc/src/sgml/advanced.sgml
new file mode 100644
index 3c067d5..1e45511
*** a/doc/src/sgml/advanced.sgml
--- b/doc/src/sgml/advanced.sgml
*************** SELECT depname, empno, salary, avg(salar
*** 389,395 ****
order in which the rows are output.) Here is an example:
<programlisting>
! SELECT depname, empno, salary, rank() OVER (PARTITION BY depname ORDER BY salary DESC) FROM empsalary;
</programlisting>
<screen>
--- 389,397 ----
order in which the rows are output.) Here is an example:
<programlisting>
! SELECT depname, empno, salary,
! rank() OVER (PARTITION BY depname ORDER BY salary DESC)
! FROM empsalary;
</programlisting>
<screen>
view thread (2+ messages)
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected]
Subject: Re: readability tutorial example in pdf
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox