List:Commits« Previous MessageNext Message »
From:Reggie Burnett Date:August 10 2009 6:03pm
Subject:bzr commit into connector-net-6.0 branch (reggie.burnett:745)
View as plain text  
#At file:///D:/bzr-connector-net/old6.0/ based on revid:reggie.burnett@stripped

  745 Reggie Burnett	2009-08-10 [merge]
      merged

    modified:
      CHANGES
      MySql.Data/Provider/Source/datareader.cs
=== modified file 'CHANGES'
=== modified file 'CHANGES'
--- a/CHANGES	2009-08-10 17:37:48 +0000
+++ b/CHANGES	2009-08-10 18:03:52 +0000
@@ -20,6 +20,7 @@
 - fixed unsigned type problems with entity framework (bug #45077)  
 - fixed formatting of single, double, and decimal values when used with entity framework
   in cultures that use the comma as a decimal separator (bug #44455)  
+- fixed GetSByte method to actually return an sbyte  (bug #46620)
   
 Version 6.0.4
 - fixed regression where using stored procs with datasets (bug #44460)

=== modified file 'MySql.Data/Provider/Source/datareader.cs'
--- a/MySql.Data/Provider/Source/datareader.cs	2009-08-10 15:30:16 +0000
+++ b/MySql.Data/Provider/Source/datareader.cs	2009-08-10 18:03:52 +0000
@@ -247,9 +247,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-20090810180352-tih24caf2qpsbzbl.bundle
Thread
bzr commit into connector-net-6.0 branch (reggie.burnett:745)Reggie Burnett10 Aug