List:Commits« Previous MessageNext Message »
From:Stewart Smith Date:August 15 2007 4:12am
Subject:bk commit into 5.1 tree (stewart:1.2580) BUG#29228
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of stewart. When stewart 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@stripped, 2007-08-15 12:12:46+10:00, stewart@stripped +1 -0
  [PATCH] Bug#29228 ndb_size.pl borks on float columns with comma in ()
  
  Index: ndb-work/storage/ndb/tools/ndb_size.pl
  ===================================================================

  storage/ndb/tools/ndb_size.pl@stripped, 2007-08-15 11:49:46+10:00, stewart@stripped
+2 -0
    Bug#29228 ndb_size.pl borks on float columns with comma in ()

# 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:	stewart
# Host:	willster.(none)
# Root:	/home/stewart/Documents/MySQL/5.1/ndb-merge

--- 1.9/storage/ndb/tools/ndb_size.pl	2007-08-15 11:46:19 +10:00
+++ 1.10/storage/ndb/tools/ndb_size.pl	2007-08-15 11:49:46 +10:00
@@ -582,6 +582,8 @@
 	{$col->dm(4)}
 	elsif($type =~ /float/)
 	{
+	    my @sz= split ',', $size;
+	    $size= $sz[0]+$sz[1];
 	    if(!defined($size) || $size<=24)
 	    {$col->dm(4)}
 	    else
Thread
bk commit into 5.1 tree (stewart:1.2580) BUG#29228Stewart Smith15 Aug