List:Internals« Previous MessageNext Message »
From:svoj Date:September 23 2005 8:27am
Subject:bk commit into 5.0 tree (svoj:1.1910) BUG#13396
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of svoj. When svoj 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://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.1910 05/09/23 13:27:41 svoj@stripped +1 -0
  BUG#13396 - SHOW CREATE TABLE omits PARSER clause
  If specified, output fulltext parser plugin name.

  sql/sql_show.cc
    1.258 05/09/23 13:27:38 svoj@stripped +6 -0
    If specified, output fulltext parser plugin name.

# 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:	svoj
# Host:	svoj-laptop.mysql.com
# Root:	/home/svoj/devel/mysql/CNET/BUG13396

--- 1.257/sql/sql_show.cc	2005-07-20 04:33:19 +05:00
+++ 1.258/sql/sql_show.cc	2005-09-23 13:27:38 +05:00
@@ -948,6 +948,12 @@
       }
     }
     packet->append(')');
+    if (key_info->parser)
+    {
+      packet->append(" WITH PARSER ", 13);
+      append_identifier(thd, packet, key_info->parser->name.str,
+                        key_info->parser->name.length);
+    }
   }
 
   /*
Thread
bk commit into 5.0 tree (svoj:1.1910) BUG#13396svoj23 Sep