]> granicus.if.org Git - postgis/commitdiff
change "vacuum analyze verbose" to "vacuum (analyze, verbose)" - the old syntax...
authorRegina Obe <lr@pcorp.us>
Thu, 13 Dec 2018 06:43:36 +0000 (06:43 +0000)
committerRegina Obe <lr@pcorp.us>
Thu, 13 Dec 2018 06:43:36 +0000 (06:43 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@17104 b70326c6-7e19-0410-871a-916f4a2858ee

doc/installation.xml

index b6bbf0abbeb7dfe202b608589905d15fca43c8cf..dd26806c301f41e824e1ae8b0850043762c35ca9 100644 (file)
@@ -2047,17 +2047,17 @@ sh ma_load.sh</programlisting>
                        </listitem>
                        <listitem><para>After you are done loading all data or at a stopping point, it's a good idea to analyze all the tiger tables to update the stats (include inherited stats)</para>
                            <programlisting>SELECT install_missing_indexes();
-vacuum analyze verbose tiger.addr;
-vacuum analyze verbose tiger.edges;
-vacuum analyze verbose tiger.faces;
-vacuum analyze verbose tiger.featnames;
-vacuum analyze verbose tiger.place;
-vacuum analyze verbose tiger.cousub;
-vacuum analyze verbose tiger.county;
-vacuum analyze verbose tiger.state;
-vacuum analyze verbose tiger.zip_lookup_base;
-vacuum analyze verbose tiger.zip_state;
-vacuum analyze verbose tiger.zip_state_loc;</programlisting>
+vacuum (analyze, verbose) tiger.addr;
+vacuum (analyze, verbose) tiger.edges;
+vacuum (analyze, verbose) tiger.faces;
+vacuum (analyze, verbose) tiger.featnames;
+vacuum (analyze, verbose) tiger.place;
+vacuum (analyze, verbose) tiger.cousub;
+vacuum (analyze, verbose) tiger.county;
+vacuum (analyze, verbose) tiger.state;
+vacuum (analyze, verbose) tiger.zip_lookup_base;
+vacuum (analyze, verbose) tiger.zip_state;
+vacuum (analyze, verbose) tiger.zip_state_loc;</programlisting>
                        </listitem>
                </orderedlist>
                <sect3 id="convert_tiger_geocoder_extension"><title>Converting a Tiger Geocoder Regular Install to Extension Model</title>