List:Internals« Previous MessageNext Message »
From:Jim Winstead Date:April 15 2005 10:55pm
Subject:bk commit into 5.0 tree (jimw:1.1840) BUG#9496
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of jimw. When jimw 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.1840 05/04/15 13:55:46 jimw@stripped +1 -0
  Make sure 'proc' table is created as MyISAM table. (Bug #9496)

  scripts/mysql_create_system_tables.sh
    1.28 05/04/15 13:55:43 jimw@stripped +1 -1
    Add 'engine=MyISAM' to creating proc table.

# 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:	jimw
# Host:	rama.(none)
# Root:	/home/jimw/my/mysql-5.0-9496

--- 1.27/scripts/mysql_create_system_tables.sh	2005-04-06 05:15:38 -07:00
+++ 1.28/scripts/mysql_create_system_tables.sh	2005-04-15 13:55:43 -07:00
@@ -717,7 +717,7 @@
   c_p="$c_p                     ) DEFAULT 0 NOT NULL,"
   c_p="$c_p   comment           char(64) binary DEFAULT '' NOT NULL,"
   c_p="$c_p   PRIMARY KEY (db,name,type)"
-  c_p="$c_p ) comment='Stored Procedures';"
+  c_p="$c_p ) engine=MyISAM comment='Stored Procedures';"
 fi
 
 cat << END_OF_DATA
Thread
bk commit into 5.0 tree (jimw:1.1840) BUG#9496Jim Winstead15 Apr