Below is the list of changes that have just been committed into a local
5.1 repository of ndbdev. When ndbdev 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.1972 05/06/20 09:36:06 tulin@stripped +1 -0
table.cc:
nicer printout in show create table for partition
sql/table.cc
1.197 05/06/20 09:35:04 tulin@stripped +3 -2
nicer printout in show create table for partition
# 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: tulin
# Host: dl145c.mysql.com
# Root: /home/ndbdev/tomas/wl2325-wl1354-new
--- 1.196/sql/table.cc Tue Jun 7 13:44:54 2005
+++ 1.197/sql/table.cc Mon Jun 20 09:35:04 2005
@@ -350,7 +350,7 @@
int add_engine(File fptr, enum db_type engine_type)
{
const char *engine_str= ha_get_storage_engine(engine_type);
- int err= add_string(fptr, "ENGINE ");
+ int err= add_string(fptr, "ENGINE=");
err+= add_string(fptr, engine_str);
return err;
}
@@ -463,7 +463,8 @@
#else
my_delete(file_name, MYF(0));
#endif
- err= add_partition_by(fptr);
+ err= add_blank(fptr);
+ err+= add_partition_by(fptr);
switch (part_info->part_type)
{
case RANGE_PARTITION:
| Thread |
|---|
| • bk commit into 5.1 tree (tulin:1.1972) | tomas | 20 Jun |