Date: Friday, December 30, 2005 @ 17:51:07
  Author: gilles
    Path: /cvsroot/carob/carob/include

Modified: DriverResultSet.hpp (1.24 -> 1.25)

Reversed ResultSetOrUpdateCount anonymous union field order to be able to 
statically initialize updateCount to -1 (needed by Statement.cpp)


---------------------+
 DriverResultSet.hpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: carob/include/DriverResultSet.hpp
diff -u carob/include/DriverResultSet.hpp:1.24 
carob/include/DriverResultSet.hpp:1.25
--- carob/include/DriverResultSet.hpp:1.24      Thu Dec 15 15:55:57 2005
+++ carob/include/DriverResultSet.hpp   Fri Dec 30 17:51:07 2005
@@ -338,10 +338,10 @@
   /** Value itself. Can be either a DriverResultSet or an updateCount */
   union
   {
-    /** Pointer (to avoid copy of large objects) to a DriverResultSet object */
-    DriverResultSet*          resultSetPtr;
     /** Number of column concerned by the update */
     int                       updateCount;
+    /** Pointer (to avoid copy of large objects) to a DriverResultSet object */
+    DriverResultSet*          resultSetPtr;
   };
 } ResultSetOrUpdateCount;
 

_______________________________________________
Carob-commits mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/carob-commits

Reply via email to