Gentoo Archives: gentoo-doc-cvs

From: "Joshua Saddler (nightmorph)" <nightmorph@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en: postgres-howto.xml
Date: Fri, 04 May 2012 09:03:52
Message-Id: 20120504064435.C855E2004B@flycatcher.gentoo.org
1 nightmorph 12/05/04 06:44:35
2
3 Modified: postgres-howto.xml
4 Log:
5 update postgres instrumentation functions for multiple versions, bug 414415
6
7 Revision Changes Path
8 1.10 xml/htdocs/doc/en/postgres-howto.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/postgres-howto.xml?rev=1.10&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/postgres-howto.xml?rev=1.10&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/postgres-howto.xml?r1=1.9&r2=1.10
13
14 Index: postgres-howto.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/postgres-howto.xml,v
17 retrieving revision 1.9
18 retrieving revision 1.10
19 diff -u -r1.9 -r1.10
20 --- postgres-howto.xml 15 Sep 2011 20:36:20 -0000 1.9
21 +++ postgres-howto.xml 4 May 2012 06:44:35 -0000 1.10
22 @@ -1,8 +1,8 @@
23 <?xml version="1.0" encoding="UTF-8"?>
24 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
25 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/postgres-howto.xml,v 1.9 2011/09/15 20:36:20 swift Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/postgres-howto.xml,v 1.10 2012/05/04 06:44:35 nightmorph Exp $ -->
27
28 -<guide lang="en">
29 +<guide>
30 <title>PostgreSQL Quick Start Guide</title>
31
32 <author title="Author">
33 @@ -23,8 +23,8 @@
34 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
35 <license/>
36
37 -<version>9</version>
38 -<date>2011-09-15</date>
39 +<version>10</version>
40 +<date>2012-05-04</date>
41
42 <chapter>
43 <title>Introduction</title>
44 @@ -823,16 +823,21 @@
45 <body>
46
47 <p>
48 -This problem is easy to solve. What is difficult about it is finding the
49 -answer. What is required is an import from a file that already exists on the
50 -storage drive: <path>adminpack.sql</path>. To resolve this issue, run this
51 -command:
52 +This problem is easy to solve, with the solution depending on the version you
53 +are using. What is difficult about it is finding the answer. What is required is
54 +an import from a file that already exists on the storage drive:
55 +<path>adminpack.sql</path>. To resolve this issue, run the command appropriate
56 +to the version you have:
57 </p>
58
59 -<pre caption="Command to Add Instrumentation Functions">
60 +<pre caption="Add instrumentation functions for versions less than 9.1">
61 # <i>psql -U postgres --file /usr/share/postgresql-9.0/contrib/adminpack.sql</i>
62 </pre>
63
64 +<pre caption="Add instrumentation functions for version 9.1 and up">
65 +# <i>psql -U postgres -c "CREATE EXTENSION adminpack;"</i>
66 +</pre>
67 +
68 </body>
69 </section>
70 </chapter>