List:Commits« Previous MessageNext Message »
From:Reggie Burnett Date:August 10 2009 5:57pm
Subject:bzr commit into connector-net-5.2 branch (reggie.burnett:706) Bug#46620
View as plain text  
#At file:///D:/bzr-connector-net/5.2/ based on revid:reggie.burnett@stripped

  706 Reggie Burnett	2009-08-10
      - fixed GetSByte method to actually return an sbyte  (bug #46620)

    modified:
      CHANGES
      MySql.Data/Provider/Source/datareader.cs
=== modified file 'CHANGES'
=== modified file 'CHANGES'
--- a/CHANGES	2009-08-04 15:18:55 +0000
+++ b/CHANGES	2009-08-10 17:57:08 +0000
@@ -1,3 +1,4 @@
+Test
 Version 5.2.8
 - fixed situation where TreatTinyAsBoolean had no effect with default database character set to UTF8
     (bug#46205)
@@ -10,6 +11,7 @@
 - removed usage of TransactionScope from web providers so that they work properly
   on Mono 2.0 (bug #46375)
 - fixed a small documentation bug related to our server compatibility
+- fixed GetSByte method to actually return an sbyte  (bug #46620)
 
 Version 5.2.7 7/13/09
 - fixed procedure parameters collection so that an exception is thrown if we can't get the 

=== modified file 'MySql.Data/Provider/Source/datareader.cs'
--- a/MySql.Data/Provider/Source/datareader.cs	2009-03-05 17:49:55 +0000
+++ b/MySql.Data/Provider/Source/datareader.cs	2009-08-10 17:57:08 +0000
@@ -248,9 +248,9 @@
         /// </summary>
         /// <param name="name"></param>
         /// <returns></returns>
-        public byte GetSByte(string name)
+        public sbyte GetSByte(string name)
         {
-            return GetByte(GetOrdinal(name));
+            return GetSByte(GetOrdinal(name));
         }
 
         /// <summary>


Attachment: [text/bzr-bundle] bzr/reggie.burnett@sun.com-20090810175708-f1eg8wlgfov9s56j.bundle
Thread
bzr commit into connector-net-5.2 branch (reggie.burnett:706) Bug#46620Reggie Burnett10 Aug