From: Regina Obe Date: Sat, 2 Jul 2011 18:19:55 +0000 (+0000) Subject: #1083, #1093: fix typo, delete probe_geometry_columns which is now completely obsolte... X-Git-Tag: 2.0.0alpha1~1285 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad2aa1e26672d3d01d1988b40582740a0d1bb6df;p=postgis #1083, #1093: fix typo, delete probe_geometry_columns which is now completely obsolte with gnew geometry-columns view change git-svn-id: http://svn.osgeo.org/postgis/trunk@7557 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_management.xml b/doc/reference_management.xml index 1e6f84cf9..8219040cc 100644 --- a/doc/reference_management.xml +++ b/doc/reference_management.xml @@ -102,8 +102,8 @@ Changed: 2.0.0 This function no longer updates geometry_columns since geometry_columns is a view that reads from system catalogs. It by default - also does not create constraints, but instead uses the built in typmode behavior. So for example building a wgs84 POINT column with this function is now - equivalent to: ALTER TABLE some_table ADD COLUMN geom geometry(Point,4326); + also does not create constraints, but instead uses the built in type modifier behavior of PostgreSQL. So for example building a wgs84 POINT column with this function is now + equivalent to: ALTER TABLE some_table ADD COLUMN geom geometry(Point,4326); Changed: 2.0.0 If you require the old behavior of constraints use the default use_typmod, but set it to false. @@ -977,50 +977,6 @@ Check constraints: - - - Probe_Geometry_Columns - - Scans all tables with PostGIS geometry constraints and adds them to the geometry_columns - table if they are not there. - - - - - - text Probe_Geometry_Columns - - - - - - - Description - - Scans all tables with PostGIS geometry constraints and adds them to the geometry_columns - table if they are not there. Also give stats on number of inserts and already present or possibly obsolete. - This will usually only pick up records added by AddGeometryColumn() function. It will not scan views so views - will need to be manually added to geometry_columns table. - - - - Examples - - SELECT Probe_Geometry_Columns(); - probe_geometry_columns ---------------------------------------- -probed:6 inserted:0 conflicts:6 stale:0 -(1 row) - - - - See Also - - - - - - UpdateGeometrySRID