List:Commits« Previous MessageNext Message »
From:Hakan Kuecuekyilmaz Date:June 7 2007 11:26am
Subject:bk commit into 6.0-falcon tree (hakank:1.2553)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0-falcon repository of hakan. When hakan 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-06-07 13:25:57+02:00, hakank@stripped +1 -0
  Fix for gcc warning of type
    enumeration value fmtBlob not handled in switch.

  storage/falcon/EditString.cpp@stripped, 2007-06-07 13:25:53+02:00, hakank@stripped +6 -3
    Fix for gcc warning of type
      enumeration value fmtBlob not handled in switch.

# 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:	hakank
# Host:	lu0011.wdf.sap.corp
# Root:	/home/hakan/work/mysql/mysql-5.1-falcon

--- 1.7/storage/falcon/EditString.cpp	2007-06-01 17:58:03 +02:00
+++ 1.8/storage/falcon/EditString.cpp	2007-06-07 13:25:53 +02:00
@@ -556,10 +556,13 @@
 
 		case fmtString:
 			return formatString (value, string);
-		}
-
-	//NOT_YET_IMPLEMENTED;
 
+		// NOT_YET_IMPLEMENTED
+		case  fmtBlob:
+		case  fmtWrapped:
+		case  fmtImage:
+			return NULL;
+		}
 	return NULL;
 }
 
Thread
bk commit into 6.0-falcon tree (hakank:1.2553)Hakan Kuecuekyilmaz7 Jun