List:Commits« Previous MessageNext Message »
From:paul Date:April 19 2006 9:48pm
Subject:svn commit - mysqldoc@docsrva: r1877 - in trunk: . refman-4.1 refman-5.0 refman-5.1 refman-common
View as plain text  
Author: paul
Date: 2006-04-19 23:48:07 +0200 (Wed, 19 Apr 2006)
New Revision: 1877

Log:
 r6781@polar:  paul | 2006-04-19 16:46:31 -0500
 myisam_ftdump manpage. (Bug#13738)


Modified:
   trunk/
   trunk/refman-4.1/client-utility-programs.xml
   trunk/refman-5.0/client-utility-programs.xml
   trunk/refman-5.1/client-utility-programs.xml
   trunk/refman-common/titles.en.ent


Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:6776
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:9568
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:4545
   + 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:6781
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:9568
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:4545

Modified: trunk/refman-4.1/client-utility-programs.xml
===================================================================
--- trunk/refman-4.1/client-utility-programs.xml	2006-04-19 19:41:54 UTC (rev 1876)
+++ trunk/refman-4.1/client-utility-programs.xml	2006-04-19 21:48:07 UTC (rev 1877)
@@ -69,6 +69,22 @@
       <listitem>
         <para>
           <indexterm>
+            <primary>myisam_ftdump</primary>
+          </indexterm>
+
+          <command>myisam_ftdump</command>
+        </para>
+
+        <para>
+          A utility that displays information about full-text indexes in
+          <literal>MyISAM</literal> tables. See
+          <xref linkend="myisam-ftdump"/>.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <indexterm>
             <primary><command>myisamchk</command></primary>
           </indexterm>
 
@@ -424,6 +440,245 @@
 
   </section>
 
+  <section id="fake-id-for-myisam-ftdump-manpage-section-wrapper">
+
+    <title>fake title for myisam_ftdump manpage section wrapper</title>
+
+    <refentry id="myisam-ftdump">
+
+      <indexterm>
+        <primary><command>myisam_ftdump</command></primary>
+      </indexterm>
+
+      <refmeta>
+        <refentrytitle><command>myisam_ftdump</command></refentrytitle>
+         
+        <manvolnum>1</manvolnum>
+        <refmiscinfo class="manual">MySQL Database System</refmiscinfo>
+        <refmiscinfo class="source">MySQL</refmiscinfo>
+        <refmiscinfo class="version">&current-series;</refmiscinfo>
+        <refmiscinfo class="refman">&title-myisam-ftdump-for-manual;</refmiscinfo>
+      </refmeta>
+
+      <refnamediv>
+        <refname>myisam_ftdump</refname>
+         
+        <refpurpose>&title-myisam-ftdump-for-manpage;</refpurpose>
+      </refnamediv>
+
+      <refsynopsisdiv>
+        <cmdsynopsis>
+          <command>myisam_ftdump [<replaceable>options</replaceable>] <replaceable>tbl_name</replaceable> <replaceable>index_num</replaceable></command>
+        </cmdsynopsis>
+      </refsynopsisdiv>
+
+      <refsection id="myisam-ftdump-description">
+
+        <title>Description</title>
+
+        <para>
+          <command>myisam_ftdump</command> displays information about
+          <literal>FULLTEXT</literal> indexes in
+          <literal>MyISAM</literal> tables. It reads the
+          <literal>MyISAM</literal> index file directly, so it must be
+          run on the server host where the table is located
+        </para>
+
+        <para>
+          Invoke <command>myisam_ftdump</command> like this:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump [<replaceable>options</replaceable>] <replaceable>tbl_name</replaceable> <replaceable>index_num</replaceable></userinput>
+</programlisting>
+
+        <para>
+          The <replaceable>tbl_name</replaceable> argument should be the
+          name of a <literal>MyISAM</literal> table. If you do not
+          invoke <command>myisam_ftdump</command> in the directory where
+          the table files are located, the table name must be preceded
+          by the pathname to the table's database directory. Index
+          numbers begin with 0.
+        </para>
+
+        <para>
+          Example: Suppose that the <literal>test</literal> database
+          contains a table named <literal>mytexttablel</literal> that
+          has the following definition:
+        </para>
+
+<programlisting>
+CREATE TABLE mytexttable
+(
+  id   INT NOT NULL,
+  txt  TEXT NOT NULL,
+  PRIMARY KEY (id),
+  FULLTEXT (txt)
+);
+</programlisting>
+
+        <para>
+          The index on <literal>id</literal> is index 0 and the
+          <literal>FULLTEXT</literal> index on <literal>txt</literal> is
+          index 1. If your working directory is the
+          <literal>test</literal> database directory, invoke
+          <command>myisam_ftdump</command> as follows:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump mytexttable 1</userinput>
+</programlisting>
+
+        <para>
+          If the pathname to the <literal>test</literal> database
+          directory is <filename>/usr/local/mysql/data/test</filename>,
+          you can also specify the table name argument using that
+          pathname. This is useful if you do not invoke
+          <command>myisam_ftdump</command> in the database directory:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump /usr/local/mysql/data/test/mytexttable 1</userinput>
+</programlisting>
+
+        <para>
+          <command>myisam_ftdump</command> understands the following
+          options:
+        </para>
+
+        <itemizedlist>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>help option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>help option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--help</option>, <option>-h</option>
+              <option>-?</option>
+            </para>
+
+            <para>
+              Display a help message and exit.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>count option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>count option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--count</option>, <option>-c</option>
+            </para>
+
+            <para>
+              Calculate per-word statistics (counts and global weights).
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>dump option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>dump option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--dump</option>, <option>-d</option>
+            </para>
+
+            <para>
+              Dump the index, including data offsets and word weights.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>length option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>length option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--length</option>, <option>-l</option>
+            </para>
+
+            <para>
+              Report the length distribution.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>stats option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>stats option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--stats</option>, <option>-s</option>
+            </para>
+
+            <para>
+              Report global index statistics. This is the default
+              operation if no other operation is specified.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>verbose option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>verbose option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--verbose</option>, <option>-v</option>
+            </para>
+
+            <para>
+              Verbose mode. Print more output about what the program
+              does.
+            </para>
+          </listitem>
+
+        </itemizedlist>
+
+      </refsection>
+
+    </refentry>
+
+  </section>
+
   <section id="fake-id-for-myisamchk-manpage-section-wrapper">
 
     <title>fake title for myisamchk manpage section wrapper</title>

Modified: trunk/refman-5.0/client-utility-programs.xml
===================================================================
--- trunk/refman-5.0/client-utility-programs.xml	2006-04-19 19:41:54 UTC (rev 1876)
+++ trunk/refman-5.0/client-utility-programs.xml	2006-04-19 21:48:07 UTC (rev 1877)
@@ -69,6 +69,22 @@
       <listitem>
         <para>
           <indexterm>
+            <primary>myisam_ftdump</primary>
+          </indexterm>
+
+          <command>myisam_ftdump</command>
+        </para>
+
+        <para>
+          A utility that displays information about full-text indexes in
+          <literal>MyISAM</literal> tables. See
+          <xref linkend="myisam-ftdump"/>.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <indexterm>
             <primary><command>myisamchk</command></primary>
           </indexterm>
 
@@ -410,6 +426,245 @@
 
   </section>
 
+  <section id="fake-id-for-myisam-ftdump-manpage-section-wrapper">
+
+    <title>fake title for myisam_ftdump manpage section wrapper</title>
+
+    <refentry id="myisam-ftdump">
+
+      <indexterm>
+        <primary><command>myisam_ftdump</command></primary>
+      </indexterm>
+
+      <refmeta>
+        <refentrytitle><command>myisam_ftdump</command></refentrytitle>
+         
+        <manvolnum>1</manvolnum>
+        <refmiscinfo class="manual">MySQL Database System</refmiscinfo>
+        <refmiscinfo class="source">MySQL</refmiscinfo>
+        <refmiscinfo class="version">&current-series;</refmiscinfo>
+        <refmiscinfo class="refman">&title-myisam-ftdump-for-manual;</refmiscinfo>
+      </refmeta>
+
+      <refnamediv>
+        <refname>myisam_ftdump</refname>
+         
+        <refpurpose>&title-myisam-ftdump-for-manpage;</refpurpose>
+      </refnamediv>
+
+      <refsynopsisdiv>
+        <cmdsynopsis>
+          <command>myisam_ftdump [<replaceable>options</replaceable>] <replaceable>tbl_name</replaceable> <replaceable>index_num</replaceable></command>
+        </cmdsynopsis>
+      </refsynopsisdiv>
+
+      <refsection id="myisam-ftdump-description">
+
+        <title>Description</title>
+
+        <para>
+          <command>myisam_ftdump</command> displays information about
+          <literal>FULLTEXT</literal> indexes in
+          <literal>MyISAM</literal> tables. It reads the
+          <literal>MyISAM</literal> index file directly, so it must be
+          run on the server host where the table is located
+        </para>
+
+        <para>
+          Invoke <command>myisam_ftdump</command> like this:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump [<replaceable>options</replaceable>] <replaceable>tbl_name</replaceable> <replaceable>index_num</replaceable></userinput>
+</programlisting>
+
+        <para>
+          The <replaceable>tbl_name</replaceable> argument should be the
+          name of a <literal>MyISAM</literal> table. If you do not
+          invoke <command>myisam_ftdump</command> in the directory where
+          the table files are located, the table name must be preceded
+          by the pathname to the table's database directory. Index
+          numbers begin with 0.
+        </para>
+
+        <para>
+          Example: Suppose that the <literal>test</literal> database
+          contains a table named <literal>mytexttablel</literal> that
+          has the following definition:
+        </para>
+
+<programlisting>
+CREATE TABLE mytexttable
+(
+  id   INT NOT NULL,
+  txt  TEXT NOT NULL,
+  PRIMARY KEY (id),
+  FULLTEXT (txt)
+);
+</programlisting>
+
+        <para>
+          The index on <literal>id</literal> is index 0 and the
+          <literal>FULLTEXT</literal> index on <literal>txt</literal> is
+          index 1. If your working directory is the
+          <literal>test</literal> database directory, invoke
+          <command>myisam_ftdump</command> as follows:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump mytexttable 1</userinput>
+</programlisting>
+
+        <para>
+          If the pathname to the <literal>test</literal> database
+          directory is <filename>/usr/local/mysql/data/test</filename>,
+          you can also specify the table name argument using that
+          pathname. This is useful if you do not invoke
+          <command>myisam_ftdump</command> in the database directory:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump /usr/local/mysql/data/test/mytexttable 1</userinput>
+</programlisting>
+
+        <para>
+          <command>myisam_ftdump</command> understands the following
+          options:
+        </para>
+
+        <itemizedlist>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>help option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>help option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--help</option>, <option>-h</option>
+              <option>-?</option>
+            </para>
+
+            <para>
+              Display a help message and exit.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>count option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>count option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--count</option>, <option>-c</option>
+            </para>
+
+            <para>
+              Calculate per-word statistics (counts and global weights).
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>dump option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>dump option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--dump</option>, <option>-d</option>
+            </para>
+
+            <para>
+              Dump the index, including data offsets and word weights.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>length option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>length option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--length</option>, <option>-l</option>
+            </para>
+
+            <para>
+              Report the length distribution.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>stats option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>stats option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--stats</option>, <option>-s</option>
+            </para>
+
+            <para>
+              Report global index statistics. This is the default
+              operation if no other operation is specified.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>verbose option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>verbose option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--verbose</option>, <option>-v</option>
+            </para>
+
+            <para>
+              Verbose mode. Print more output about what the program
+              does.
+            </para>
+          </listitem>
+
+        </itemizedlist>
+
+      </refsection>
+
+    </refentry>
+
+  </section>
+
   <section id="fake-id-for-myisamchk-manpage-section-wrapper">
 
     <title>fake title for myisamchk manpage section wrapper</title>

Modified: trunk/refman-5.1/client-utility-programs.xml
===================================================================
--- trunk/refman-5.1/client-utility-programs.xml	2006-04-19 19:41:54 UTC (rev 1876)
+++ trunk/refman-5.1/client-utility-programs.xml	2006-04-19 21:48:07 UTC (rev 1877)
@@ -69,6 +69,22 @@
       <listitem>
         <para>
           <indexterm>
+            <primary>myisam_ftdump</primary>
+          </indexterm>
+
+          <command>myisam_ftdump</command>
+        </para>
+
+        <para>
+          A utility that displays information about full-text indexes in
+          <literal>MyISAM</literal> tables. See
+          <xref linkend="myisam-ftdump"/>.
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <indexterm>
             <primary><command>myisamchk</command></primary>
           </indexterm>
 
@@ -426,6 +442,245 @@
 
   </section>
 
+  <section id="fake-id-for-myisam-ftdump-manpage-section-wrapper">
+
+    <title>fake title for myisam_ftdump manpage section wrapper</title>
+
+    <refentry id="myisam-ftdump">
+
+      <indexterm>
+        <primary><command>myisam_ftdump</command></primary>
+      </indexterm>
+
+      <refmeta>
+        <refentrytitle><command>myisam_ftdump</command></refentrytitle>
+         
+        <manvolnum>1</manvolnum>
+        <refmiscinfo class="manual">MySQL Database System</refmiscinfo>
+        <refmiscinfo class="source">MySQL</refmiscinfo>
+        <refmiscinfo class="version">&current-series;</refmiscinfo>
+        <refmiscinfo class="refman">&title-myisam-ftdump-for-manual;</refmiscinfo>
+      </refmeta>
+
+      <refnamediv>
+        <refname>myisam_ftdump</refname>
+         
+        <refpurpose>&title-myisam-ftdump-for-manpage;</refpurpose>
+      </refnamediv>
+
+      <refsynopsisdiv>
+        <cmdsynopsis>
+          <command>myisam_ftdump [<replaceable>options</replaceable>] <replaceable>tbl_name</replaceable> <replaceable>index_num</replaceable></command>
+        </cmdsynopsis>
+      </refsynopsisdiv>
+
+      <refsection id="myisam-ftdump-description">
+
+        <title>Description</title>
+
+        <para>
+          <command>myisam_ftdump</command> displays information about
+          <literal>FULLTEXT</literal> indexes in
+          <literal>MyISAM</literal> tables. It reads the
+          <literal>MyISAM</literal> index file directly, so it must be
+          run on the server host where the table is located
+        </para>
+
+        <para>
+          Invoke <command>myisam_ftdump</command> like this:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump [<replaceable>options</replaceable>] <replaceable>tbl_name</replaceable> <replaceable>index_num</replaceable></userinput>
+</programlisting>
+
+        <para>
+          The <replaceable>tbl_name</replaceable> argument should be the
+          name of a <literal>MyISAM</literal> table. If you do not
+          invoke <command>myisam_ftdump</command> in the directory where
+          the table files are located, the table name must be preceded
+          by the pathname to the table's database directory. Index
+          numbers begin with 0.
+        </para>
+
+        <para>
+          Example: Suppose that the <literal>test</literal> database
+          contains a table named <literal>mytexttablel</literal> that
+          has the following definition:
+        </para>
+
+<programlisting>
+CREATE TABLE mytexttable
+(
+  id   INT NOT NULL,
+  txt  TEXT NOT NULL,
+  PRIMARY KEY (id),
+  FULLTEXT (txt)
+);
+</programlisting>
+
+        <para>
+          The index on <literal>id</literal> is index 0 and the
+          <literal>FULLTEXT</literal> index on <literal>txt</literal> is
+          index 1. If your working directory is the
+          <literal>test</literal> database directory, invoke
+          <command>myisam_ftdump</command> as follows:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump mytexttable 1</userinput>
+</programlisting>
+
+        <para>
+          If the pathname to the <literal>test</literal> database
+          directory is <filename>/usr/local/mysql/data/test</filename>,
+          you can also specify the table name argument using that
+          pathname. This is useful if you do not invoke
+          <command>myisam_ftdump</command> in the database directory:
+        </para>
+
+<programlisting>
+shell&gt; <userinput>myisam_ftdump /usr/local/mysql/data/test/mytexttable 1</userinput>
+</programlisting>
+
+        <para>
+          <command>myisam_ftdump</command> understands the following
+          options:
+        </para>
+
+        <itemizedlist>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>help option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>help option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--help</option>, <option>-h</option>
+              <option>-?</option>
+            </para>
+
+            <para>
+              Display a help message and exit.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>count option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>count option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--count</option>, <option>-c</option>
+            </para>
+
+            <para>
+              Calculate per-word statistics (counts and global weights).
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>dump option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>dump option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--dump</option>, <option>-d</option>
+            </para>
+
+            <para>
+              Dump the index, including data offsets and word weights.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>length option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>length option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--length</option>, <option>-l</option>
+            </para>
+
+            <para>
+              Report the length distribution.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>stats option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>stats option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--stats</option>, <option>-s</option>
+            </para>
+
+            <para>
+              Report global index statistics. This is the default
+              operation if no other operation is specified.
+            </para>
+          </listitem>
+
+          <listitem>
+            <para>
+              <indexterm>
+                <primary>myisam_ftdump</primary>
+                <secondary>verbose option</secondary>
+              </indexterm>
+
+              <indexterm>
+                <primary>verbose option</primary>
+                <secondary>myisam_ftdump</secondary>
+              </indexterm>
+
+              <option>--verbose</option>, <option>-v</option>
+            </para>
+
+            <para>
+              Verbose mode. Print more output about what the program
+              does.
+            </para>
+          </listitem>
+
+        </itemizedlist>
+
+      </refsection>
+
+    </refentry>
+
+  </section>
+
   <section id="fake-id-for-myisamchk-manpage-section-wrapper">
 
     <title>fake title for myisamchk manpage section wrapper</title>

Modified: trunk/refman-common/titles.en.ent
===================================================================
--- trunk/refman-common/titles.en.ent	2006-04-19 19:41:54 UTC (rev 1876)
+++ trunk/refman-common/titles.en.ent	2006-04-19 21:48:07 UTC (rev 1877)
@@ -780,6 +780,8 @@
 <!ENTITY title-multiple-windows-services "Starting Multiple Windows Servers as Services">
 <!ENTITY title-multipolygon-property-functions "<literal>MultiPolygon</literal> Functions">
 <!ENTITY title-my-init "<literal>my_init()</literal>">
+<!ENTITY title-myisam-ftdump-for-manpage "display full-text index information">
+<!ENTITY title-myisam-ftdump-for-manual "Display Full-Text Index information">
 <!ENTITY title-myisam-index-statistics "<literal>MyISAM</literal> Index Statistics Collection">
 <!ENTITY title-myisam-key-cache "The <literal>MyISAM</literal> Key Cache">
 <!ENTITY title-myisam-start "<literal>MyISAM</literal> Startup Options">

Thread
svn commit - mysqldoc@docsrva: r1877 - in trunk: . refman-4.1 refman-5.0 refman-5.1 refman-commonpaul19 Apr