List:Commits« Previous MessageNext Message »
From:mcbrown Date:November 29 2006 5:42pm
Subject:svn commit - mysqldoc@docsrva: r4077 - trunk/refman-5.0
View as plain text  
Author: mcbrown
Date: 2006-11-29 18:42:51 +0100 (Wed, 29 Nov 2006)
New Revision: 4077

Log:
Added warning for Spatial Indexes (not supported on InnoDB/Archive/NDB engines)

Addresses Docs bugs: 24006, 23536



Modified:
   trunk/refman-5.0/spatial-extensions.xml


Modified: trunk/refman-5.0/spatial-extensions.xml
===================================================================
--- trunk/refman-5.0/spatial-extensions.xml	2006-11-29 17:22:31 UTC (rev 4076)
+++ trunk/refman-5.0/spatial-extensions.xml	2006-11-29 17:42:51 UTC (rev 4077)
Changed blocks: 2, Lines Added: 16, Lines Deleted: 9; 1600 bytes

@@ -25,17 +25,16 @@
     features are available for <literal>MyISAM</literal> tables only. As
     of MySQL 5.0.16, <literal>InnoDB</literal>, <literal>NDB</literal>,
     <literal>BDB</literal>, and <literal>ARCHIVE</literal> also support
-    spatial features. (However, the <literal>ARCHIVE</literal> engine
-    does not support indexing, so spatial columns in
-    <literal>ARCHIVE</literal> columns cannot be indexed. MySQL Cluster
-    also does not support indexing of spatial columns.)
+    spatial features.
   </para>
 
-  <para>
-    Although spatial extensions are supported in
-    <literal>InnoDB</literal> tables, use of spatial indexes may cause a
-    crash. (Bug #15860)
-  </para>
+  <warning>
+    <para>
+      Spatial indexes are not supported for <literal>InnoDB</literal>,
+      <literal>ARCHIVE</literal>, or <literal>NDB</literal> (Cluster)
+      tables.
+    </para>
+  </warning>
 
   <para>
     This chapter covers the following topics:

@@ -4867,6 +4866,14 @@
       <literal>POINT</literal> columns.
     </para>
 
+    <warning>
+      <para>
+        Spatial indexes are not supported for <literal>InnoDB</literal>,
+        <literal>ARCHIVE</literal>, or <literal>NDB</literal> (Cluster)
+        tables.
+      </para>
+    </warning>
+
     <section id="creating-spatial-indexes">
 
       <title>Creating Spatial Indexes</title>


Thread
svn commit - mysqldoc@docsrva: r4077 - trunk/refman-5.0mcbrown29 Nov