List:Internals« Previous MessageNext Message »
From:ramil Date:April 4 2005 11:33am
Subject:bk commit into 5.0 tree (ramil:1.1859)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of ram. When ram 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.1859 05/04/04 16:33:23 ramil@stripped +1 -0
  Fix for bit type:
  we have to handle bit fields as well.

  libmysql/libmysql.c
    1.206 05/04/04 16:33:17 ramil@stripped +2 -0
    Fix for bit type:
    we have to handle bit fields as well.

# 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:	ramil
# Host:	gw.mysql.r18.ru
# Root:	/usr/home/ram/work/mysql-5.0

--- 1.205/libmysql/libmysql.c	2005-03-24 16:17:31 +04:00
+++ 1.206/libmysql/libmysql.c	2005-04-04 16:33:17 +05:00
@@ -4258,6 +4258,7 @@
   case MYSQL_TYPE_MEDIUM_BLOB:
   case MYSQL_TYPE_LONG_BLOB:
   case MYSQL_TYPE_BLOB:
+  case MYSQL_TYPE_BIT:
     DBUG_ASSERT(param->buffer_length != 0);
     param->fetch_result= fetch_result_bin;
     break;
@@ -4334,6 +4335,7 @@
   case MYSQL_TYPE_BLOB:
   case MYSQL_TYPE_VAR_STRING:
   case MYSQL_TYPE_STRING:
+  case MYSQL_TYPE_BIT:
     param->skip_result= skip_result_string;
     break;
   default:
Thread
bk commit into 5.0 tree (ramil:1.1859)ramil4 Apr