]> granicus.if.org Git - postgis/commitdiff
#1083, #1093: fix typo, delete probe_geometry_columns which is now completely obsolte...
authorRegina Obe <lr@pcorp.us>
Sat, 2 Jul 2011 18:19:55 +0000 (18:19 +0000)
committerRegina Obe <lr@pcorp.us>
Sat, 2 Jul 2011 18:19:55 +0000 (18:19 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@7557 b70326c6-7e19-0410-871a-916f4a2858ee

doc/reference_management.xml

index 1e6f84cf9a9e94b1dfbd4c373b5804565c5f0650..8219040cc06ae387b0c8913fa2c0c1a7fffbda52 100644 (file)
 
                <note>
                        <para>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); </para>
+                       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: <code>ALTER TABLE some_table ADD COLUMN geom geometry(Point,4326);</code> </para>
                        <para>Changed: 2.0.0 If you require the old behavior of constraints use the default <varname>use_typmod</varname>, but set it to false.</para>
                </note>
                
@@ -977,50 +977,6 @@ Check constraints:
          </refsection>
        </refentry>
 
-       <refentry id="Probe_Geometry_Columns">
-         <refnamediv>
-               <refname>Probe_Geometry_Columns</refname>
-
-               <refpurpose>Scans all tables with PostGIS geometry constraints and adds them to the <varname>geometry_columns</varname>
-                       table if they are not there.</refpurpose>
-         </refnamediv>
-
-         <refsynopsisdiv>
-               <funcsynopsis>
-                 <funcprototype>
-                       <funcdef>text <function>Probe_Geometry_Columns</function></funcdef>
-                       <paramdef></paramdef>
-                 </funcprototype>
-               </funcsynopsis>
-         </refsynopsisdiv>
-
-         <refsection>
-               <title>Description</title>
-
-               <para>Scans all tables with PostGIS geometry constraints and adds them to the <varname>geometry_columns</varname>
-                       table if they are not there.  Also give stats on number of inserts and already present or possibly obsolete.</para>
-               <note><para>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.</para></note>
-         </refsection>
-
-         <refsection>
-               <title>Examples</title>
-
-               <programlisting>SELECT Probe_Geometry_Columns();
-                       probe_geometry_columns
----------------------------------------
-probed:6 inserted:0 conflicts:6 stale:0
-(1 row)</programlisting>
-         </refsection>
-
-         <refsection>
-               <title>See Also</title>
-
-               <para><xref linkend="AddGeometryColumn" /></para>
-         </refsection>
-       </refentry>
-
-
        <refentry id="UpdateGeometrySRID">
          <refnamediv>
                <refname>UpdateGeometrySRID</refname>