List:Internals« Previous MessageNext Message »
From:paul Date:August 17 2005 4:23pm
Subject:bk commit - mysqldoc@docsrva tree (paul:1.3305)
View as plain text  
Below is the list of changes that have just been committed into a local
mysqldoc repository of paul. When paul does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html

ChangeSet
  1.3305 05/08/17 11:23:36 paul@stripped +4 -0
  SHOW OPEN TABLES now supports
  FROM and LIKE clauses.

  refman/sql-syntax.xml
    1.48 05/08/17 11:23:34 paul@stripped +4 -2
    SHOW OPEN TABLES now supports
    FROM and LIKE clauses.

  refman-common/news-5.0.xml
    1.55 05/08/17 11:23:34 paul@stripped +20 -9
    SHOW OPEN TABLES now supports
    FROM and LIKE clauses.

  refman-5.1/sql-syntax.xml
    1.19 05/08/17 11:23:34 paul@stripped +4 -2
    SHOW OPEN TABLES now supports
    FROM and LIKE clauses.

  refman-5.0/sql-syntax.xml
    1.21 05/08/17 11:23:34 paul@stripped +4 -2
    SHOW OPEN TABLES now supports
    FROM and LIKE clauses.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	paul
# Host:	kite-hub.kitebird.com
# Root:	/src/extern/MySQL/bk/mysqldoc

--- 1.18/refman-5.1/sql-syntax.xml	2005-08-16 15:23:02 -05:00
+++ 1.19/refman-5.1/sql-syntax.xml	2005-08-17 11:23:34 -05:00
@@ -13637,7 +13637,7 @@
 -->
 
 <programlisting>
-SHOW OPEN TABLES
+SHOW OPEN TABLES [FROM <replaceable>db_name</replaceable>] [LIKE '<replaceable>pattern</replaceable>']
 </programlisting>
 
         <para>
@@ -13700,7 +13700,9 @@
 
         <para>
           <literal>SHOW OPEN TABLES</literal> was added in MySQL
-          3.23.33.
+          3.23.33. The <literal>FROM</literal> and
+          <literal>LIKE</literal> clauses may be used as of MySQL
+          5.0.12.
         </para>
 
       </section>

--- 1.54/refman-common/news-5.0.xml	2005-08-15 23:17:30 -05:00
+++ 1.55/refman-common/news-5.0.xml	2005-08-17 11:23:34 -05:00
@@ -175,6 +175,14 @@
 
       <listitem>
         <para>
+          <literal>SHOW OPEN TABLES</literal> now supports
+          <literal>FROM</literal> and <literal>LIKE</literal> clauses.
+          (Bug #12183)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           <literal>SHOW TABLE STATUS FROM INFORMATION_SCHEMA</literal>
           now sorts output by table name the same as it does for other
           databases. (Bug #12315)
@@ -3855,7 +3863,8 @@
         <para>
           Fixed a string-length comparison problem that caused
           <command>mysql</command> to fail loading dump files containing
-          certain &lsquo;<literal>\</literal>&rsquo;-sequences. (Bug #9756)
+          certain &lsquo;<literal>\</literal>&rsquo;-sequences. (Bug
+          #9756)
         </para>
       </listitem>
 
@@ -4228,9 +4237,10 @@
         <para>
           Fixed <literal>utf8_spanish2_ci</literal> and
           <literal>ucs2_spanish2_ci</literal> collations to not consider
-          &lsquo;<literal>r</literal>&rsquo; equal to &lsquo;<literal>rr</literal>&rsquo;. If
-          you upgrade to this version from an earlier version, you
-          should rebuild the indexes of affected tables. (Bug #9269)
+          &lsquo;<literal>r</literal>&rsquo; equal to
+          &lsquo;<literal>rr</literal>&rsquo;. If you upgrade to this
+          version from an earlier version, you should rebuild the
+          indexes of affected tables. (Bug #9269)
         </para>
       </listitem>
 
@@ -5276,8 +5286,9 @@
           with single-backslash pathname separators. This would cause
           syntax errors when importing the dump file.
           <command>mysqldump</command> now changes
-          &lsquo;<literal>\</literal>&rsquo; to &lsquo;<literal>/</literal>&rsquo; in the
-          pathnames on Windows. (Bug #6660)
+          &lsquo;<literal>\</literal>&rsquo; to
+          &lsquo;<literal>/</literal>&rsquo; in the pathnames on
+          Windows. (Bug #6660)
         </para>
       </listitem>
 
@@ -5301,9 +5312,9 @@
       <listitem>
         <para>
           <command>mysqldump</command> misinterpreted
-          &lsquo;<literal>_</literal>&rsquo; and &lsquo;<literal>%</literal>&rsquo; characters
-          in the names of tables to be dumped as wildcard characters.
-          (Bug #9123)
+          &lsquo;<literal>_</literal>&rsquo; and
+          &lsquo;<literal>%</literal>&rsquo; characters in the names of
+          tables to be dumped as wildcard characters. (Bug #9123)
         </para>
       </listitem>
 

--- 1.47/refman/sql-syntax.xml	2005-08-16 15:23:03 -05:00
+++ 1.48/refman/sql-syntax.xml	2005-08-17 11:23:34 -05:00
@@ -14017,7 +14017,7 @@
 -->
 
 <programlisting>
-SHOW OPEN TABLES
+SHOW OPEN TABLES [FROM <replaceable>db_name</replaceable>] [LIKE '<replaceable>pattern</replaceable>']
 </programlisting>
 
         <para>
@@ -14080,7 +14080,9 @@
 
         <para>
           <literal>SHOW OPEN TABLES</literal> was added in MySQL
-          3.23.33.
+          3.23.33. The <literal>FROM</literal> and
+          <literal>LIKE</literal> clauses may be used as of MySQL
+          5.0.12.
         </para>
 
       </section>

--- 1.20/refman-5.0/sql-syntax.xml	2005-08-16 15:23:00 -05:00
+++ 1.21/refman-5.0/sql-syntax.xml	2005-08-17 11:23:34 -05:00
@@ -13637,7 +13637,7 @@
 -->
 
 <programlisting>
-SHOW OPEN TABLES
+SHOW OPEN TABLES [FROM <replaceable>db_name</replaceable>] [LIKE '<replaceable>pattern</replaceable>']
 </programlisting>
 
         <para>
@@ -13700,7 +13700,9 @@
 
         <para>
           <literal>SHOW OPEN TABLES</literal> was added in MySQL
-          3.23.33.
+          3.23.33. The <literal>FROM</literal> and
+          <literal>LIKE</literal> clauses may be used as of MySQL
+          5.0.12.
         </para>
 
       </section>
Thread
bk commit - mysqldoc@docsrva tree (paul:1.3305)paul17 Aug