From: Regina Obe Date: Thu, 13 Dec 2018 06:43:36 +0000 (+0000) Subject: change "vacuum analyze verbose" to "vacuum (analyze, verbose)" - the old syntax... X-Git-Tag: 3.0.0alpha1~239 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=38071d0a88880b982d2d427f06000a112bee4a4b;p=postgis change "vacuum analyze verbose" to "vacuum (analyze, verbose)" - the old syntax was removed in PostgreSQL 11 git-svn-id: http://svn.osgeo.org/postgis/trunk@17104 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/installation.xml b/doc/installation.xml index b6bbf0abb..dd26806c3 100644 --- a/doc/installation.xml +++ b/doc/installation.xml @@ -2047,17 +2047,17 @@ sh ma_load.sh 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) 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; +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; Converting a Tiger Geocoder Regular Install to Extension Model