List:Internals« Previous MessageNext Message »
From:jon Date:July 29 2005 2:39pm
Subject:bk commit - mysqldoc@docsrva tree (jon:1.3131)
View as plain text  
Below is the list of changes that have just been committed into a local
mysqldoc repository of jon. When jon 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.3131 05/07/29 22:39:12 jon@stripped +4 -0
  Corrected info for INFORMATION_SCHEMA.TRIGGERS
  and SHOW TRIGGERS statement. 
  (per Trudy's review.)
  
  Sync refman-5.0.

  refman/sql-syntax.xml
    1.24 05/07/29 22:39:10 jon@stripped +9 -9
    Corrected sample output from SHOW TRIGGERS.

  refman/information-schema.xml
    1.8 05/07/29 22:39:10 jon@stripped +24 -19
    Corrected INFORMATION_SCHEMA.TRIGGERS
    info.
    
    Changed a promise to an intention.

  refman-5.0/sql-syntax.xml
    1.29 05/07/29 22:39:10 jon@stripped +7 -7
    Sync.

  refman-5.0/information-schema.xml
    1.8 05/07/29 22:39:10 jon@stripped +24 -19
    Sync.

# 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:	jon
# Host:	gigan.
# Root:	/home/jon/bk/mysqldoc

--- 1.7/refman-5.0/information-schema.xml	2005-07-27 14:50:55 +10:00
+++ 1.8/refman-5.0/information-schema.xml	2005-07-29 22:39:10 +10:00
@@ -3063,6 +3063,16 @@
               <entry><literal>NULL</literal></entry>
             </row>
             <row>
+              <entry><literal>TRIGGER_SCHEMA</literal></entry>
+              <entry/>
+              <entry><literal>NULL</literal></entry>
+            </row>
+            <row>
+              <entry><literal>TRIGGER_NAME</literal></entry>
+              <entry/>
+              <entry><literal>NULL</literal></entry>
+            </row>
+            <row>
              
<entry><literal>EVENT_MANIPULATION</literal></entry>
               <entry/>
               <entry/>
@@ -3070,7 +3080,7 @@
             <row>
              
<entry><literal>EVENT_OBJECT_CATALOG</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
              
<entry><literal>EVENT_OBJECT_SCHEMA</literal></entry>
@@ -3085,12 +3095,12 @@
             <row>
               <entry><literal>ACTION_ORDER</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
               <entry><literal>ACTION_CONDITION</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
               <entry><literal>ACTION_STATEMENT</literal></entry>
@@ -3110,27 +3120,27 @@
             <row>
              
<entry><literal>ACTION_REFERENCE_OLD_TABLE</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
              
<entry><literal>ACTION_REFERENCE_NEW_TABLE</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
              
<entry><literal>ACTION_REFERENCE_OLD_ROW</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>OLD</literal></entry>
             </row>
             <row>
              
<entry><literal>ACTION_REFERENCE_NEW_ROW</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NEW</literal></entry>
             </row>
             <row>
               <entry><literal>CREATED</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
           </tbody>
         </tgroup>
@@ -3205,21 +3215,15 @@
 
           <listitem>
             <para>
-              The date and time of the trigger's creation is stored in
-              the <literal>CREATED</literal> column.
-            </para>
-          </listitem>
-
-          <listitem>
-            <para>
               The following columns currently always contain
               <literal>NULL</literal>:
               <literal>TRIGGER_CATALOG</literal>,
               <literal>EVENT_OBJECT_CATALOG</literal>,
               <literal>ACTION_ORDER</literal>,
               <literal>ACTION_CONDITION</literal>,
-              <literal>ACTION_REFERENCE_OLD_TABLE</literal>, and
-              <literal>ACTION_REFERENCE_NEW_TABLE</literal>,
+              <literal>ACTION_REFERENCE_OLD_TABLE</literal>
+              <literal>ACTION_REFERENCE_NEW_TABLE</literal>, and
+              <literal>CREATED</literal>,
             </para>
           </listitem>
 
@@ -3237,8 +3241,9 @@
       <title
id='title-other-information-schema-tables'>&title-other-information-schema-tables;</title>
 
       <para>
-        We will add more <literal>INFORMATION_SCHEMA</literal> tables
-        soon. Particularly, we acknowledge the need for
+        We intend to implement additional 
+        <literal>INFORMATION_SCHEMA</literal> tables. In particular, we 
+        acknowledge the need for
         <literal>INFORMATION_SCHEMA.PARAMETERS</literal> and for
         <literal>INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS</literal>.
       </para>

--- 1.28/refman-5.0/sql-syntax.xml	2005-07-28 21:40:47 +10:00
+++ 1.29/refman-5.0/sql-syntax.xml	2005-07-29 22:39:10 +10:00
@@ -14673,11 +14673,11 @@
 
 <programlisting>
 mysql&gt; SHOW TRIGGERS;
-+---------+--------+-------+-------------+--------+---------------------+
-| Trigger | Event  | Table | Statement   | Timing | Created             |
-+---------+--------+-------+-------------+--------+---------------------+
-| tn      | INSERT | t5    |  set @n = 5 | BEFORE | 2005-07-21 17:21:20 |
-+---------+--------+-------+-------------+--------+---------------------+
++---------+--------+-------+-------------+--------+---------+
+| Trigger | Event  | Table | Statement   | Timing | Created |
++---------+--------+-------+-------------+--------+---------+
+| tn      | INSERT | t5    |  set @n = 5 | BEFORE | NULL    |
++---------+--------+-------+-------------+--------+---------+
 </programlisting>
 
           A brief explanation of the columns in the output of this
@@ -14724,8 +14724,8 @@
 
             <listitem>
               <para>
-                <literal>Created</literal>: The date and time when the
-                trigger was created.
+                <literal>Created</literal>: Currently this value of this 
+                column is always <literal>NULL</literal>.
               </para>
             </listitem>
 

--- 1.7/refman/information-schema.xml	2005-07-27 14:50:56 +10:00
+++ 1.8/refman/information-schema.xml	2005-07-29 22:39:10 +10:00
@@ -3052,6 +3052,16 @@
               <entry><literal>NULL</literal></entry>
             </row>
             <row>
+              <entry><literal>TRIGGER_SCHEMA</literal></entry>
+              <entry/>
+              <entry><literal>NULL</literal></entry>
+            </row>
+            <row>
+              <entry><literal>TRIGGER_NAME</literal></entry>
+              <entry/>
+              <entry><literal>NULL</literal></entry>
+            </row>
+            <row>
              
<entry><literal>EVENT_MANIPULATION</literal></entry>
               <entry/>
               <entry/>
@@ -3059,7 +3069,7 @@
             <row>
              
<entry><literal>EVENT_OBJECT_CATALOG</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
              
<entry><literal>EVENT_OBJECT_SCHEMA</literal></entry>
@@ -3074,12 +3084,12 @@
             <row>
               <entry><literal>ACTION_ORDER</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
               <entry><literal>ACTION_CONDITION</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
               <entry><literal>ACTION_STATEMENT</literal></entry>
@@ -3099,27 +3109,27 @@
             <row>
              
<entry><literal>ACTION_REFERENCE_OLD_TABLE</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
              
<entry><literal>ACTION_REFERENCE_NEW_TABLE</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
             <row>
              
<entry><literal>ACTION_REFERENCE_OLD_ROW</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>OLD</literal></entry>
             </row>
             <row>
              
<entry><literal>ACTION_REFERENCE_NEW_ROW</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NEW</literal></entry>
             </row>
             <row>
               <entry><literal>CREATED</literal></entry>
               <entry/>
-              <entry/>
+              <entry><literal>NULL</literal></entry>
             </row>
           </tbody>
         </tgroup>
@@ -3194,21 +3204,15 @@
 
           <listitem>
             <para>
-              The date and time of the trigger's creation is stored in
-              the <literal>CREATED</literal> column.
-            </para>
-          </listitem>
-
-          <listitem>
-            <para>
               The following columns currently always contain
               <literal>NULL</literal>:
               <literal>TRIGGER_CATALOG</literal>,
               <literal>EVENT_OBJECT_CATALOG</literal>,
               <literal>ACTION_ORDER</literal>,
               <literal>ACTION_CONDITION</literal>,
-              <literal>ACTION_REFERENCE_OLD_TABLE</literal>, and
-              <literal>ACTION_REFERENCE_NEW_TABLE</literal>,
+              <literal>ACTION_REFERENCE_OLD_TABLE</literal>
+              <literal>ACTION_REFERENCE_NEW_TABLE</literal>, and
+              <literal>CREATED</literal>,
             </para>
           </listitem>
 
@@ -3226,8 +3230,9 @@
       <title
id='title-other-information-schema-tables'>&title-other-information-schema-tables;</title>
 
       <para>
-        We will add more <literal>INFORMATION_SCHEMA</literal> tables
-        soon. Particularly, we acknowledge the need for
+        We intend to implement additional 
+        <literal>INFORMATION_SCHEMA</literal> tables. In particular, we 
+        acknowledge the need for
         <literal>INFORMATION_SCHEMA.PARAMETERS</literal> and for
         <literal>INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS</literal>.
       </para>

--- 1.23/refman/sql-syntax.xml	2005-07-28 21:40:31 +10:00
+++ 1.24/refman/sql-syntax.xml	2005-07-29 22:39:10 +10:00
@@ -15092,13 +15092,13 @@
           The output of this statement resembles the following:
 
 <programlisting>
-            mysql&gt; SHOW TRIGGERS;
-            +---------+--------+-------+-------------+--------+---------------------+
-            | Trigger | Event  | Table | Statement   | Timing | Created             |
-            +---------+--------+-------+-------------+--------+---------------------+
-            | tn      | INSERT | t5    |  set @n = 5 | BEFORE | 2005-07-21 17:21:20 |
-            +---------+--------+-------+-------------+--------+---------------------+
-          </programlisting>
+mysql&gt; SHOW TRIGGERS;
++---------+--------+-------+-------------+--------+---------+
+| Trigger | Event  | Table | Statement   | Timing | Created |
++---------+--------+-------+-------------+--------+---------+
+| tn      | INSERT | t5    |  set @n = 5 | BEFORE | NULL    |
++---------+--------+-------+-------------+--------+---------+
+</programlisting>
 
           A brief explanation of the columns in the output of this
           statement is shown here:
@@ -15144,8 +15144,8 @@
 
             <listitem>
               <para>
-                <literal>Created</literal>: The date and time when the
-                trigger was created.
+                <literal>Created</literal>: Currently this value of this 
+                column is always <literal>NULL</literal>.
               </para>
             </listitem>
 
Thread
bk commit - mysqldoc@docsrva tree (jon:1.3131)jon29 Jul