List:Internals« Previous MessageNext Message »
From:Jim Winstead Date:July 15 2005 7:32pm
Subject:bk commit into 4.1 tree (jimw:1.2361)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 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.2361 05/07/15 12:31:57 jimw@stripped +1 -0
  Fix error in formatting metadata in mysqltest.

  client/mysqltest.c
    1.170 05/07/15 12:31:53 jimw@stripped +2 -2
    Fix reporting of length and max_length when displaying metadata
    -- they are unsigned int.

# 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-4.1-clean

--- 1.169/client/mysqltest.c	2005-07-01 06:40:23 -07:00
+++ 1.170/client/mysqltest.c	2005-07-15 12:31:53 -07:00
@@ -3141,10 +3141,10 @@
     int10_to_str((int) field->type, buff, 10);
     dynstr_append(ds, buff);
     dynstr_append_mem(ds, "\t", 1);
-    int10_to_str((int) field->length, buff, 10);
+    longlong10_to_str((unsigned int) field->length, buff, 10);
     dynstr_append(ds, buff);
     dynstr_append_mem(ds, "\t", 1);
-    int10_to_str((int) field->max_length, buff, 10);
+    longlong10_to_str((unsigned int) field->max_length, buff, 10);
     dynstr_append(ds, buff);
     dynstr_append_mem(ds, "\t", 1);
     dynstr_append_mem(ds, (char*) (IS_NOT_NULL(field->flags) ?
Thread
bk commit into 4.1 tree (jimw:1.2361)Jim Winstead15 Jul