Update of /cvsroot/monetdb/pathfinder/compiler/include
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv5274/compiler/include

Modified Files:
        mil.h 
Log Message:
Bug fix: [ 1835717 ] XQ: compilation fails on various platforms
submited on 2007-11-21.
Handle the default case of the switch for update functions correctly
in the milgen.brg file.


Index: mil.h
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/include/mil.h,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- mil.h       20 Nov 2007 16:57:27 -0000      1.46
+++ mil.h       21 Nov 2007 15:17:41 -0000      1.47
@@ -450,16 +450,15 @@
 
 /* enum for update types */
 enum PFmil_update_t {
-      UPDATE_DUMMY          /**< skip zero enum */
-    , UPDATE_INSERT_FIRST
-    , UPDATE_INSERT_LAST
-    , UPDATE_INSERT_BEFORE
-    , UPDATE_INSERT_AFTER
-    , UPDATE_REPLACECONTENT
-    , UPDATE_REPLACENODE
-    , UPDATE_DELETE
-    , UPDATE_RENAME
-    , UPDATE_REPLACE
+      UPDATE_INSERT_FIRST     = 1
+    , UPDATE_INSERT_LAST      = 2
+    , UPDATE_INSERT_BEFORE    = 3
+    , UPDATE_INSERT_AFTER     = 4
+    , UPDATE_REPLACECONTENT   = 5
+    , UPDATE_REPLACENODE      = 6
+    , UPDATE_DELETE           = 7
+    , UPDATE_RENAME           = 8
+    , UPDATE_REPLACE          = 9
 };
 typedef enum PFmil_update_t PFmil_update_t;
 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to