Update of /cvsroot/monetdb/pathfinder/runtime
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21871/runtime

Modified Files:
      Tag: XQuery_0-24
        pathfinder.mx 
Log Message:

fixed bug in runtime back-end choice
in case compilation default is "algebra"


U pathfinder.mx
Index: pathfinder.mx
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/pathfinder.mx,v
retrieving revision 1.416.2.7
retrieving revision 1.416.2.8
diff -u -d -r1.416.2.7 -r1.416.2.8
--- pathfinder.mx       8 Jun 2008 20:24:42 -0000       1.416.2.7
+++ pathfinder.mx       16 Jun 2008 21:23:51 -0000      1.416.2.8
@@ -4367,8 +4367,8 @@
          (GDKgetenv("xquery_backend") != NULL) && 
(strcmp(GDKgetenv("xquery_backend"),"algebra") == 0)))
         options |= COMPILE_OPTION_ALGEBRA;
 #else /* ALGEBRA_IS_DEFAULT */
-    if (((ctx->mode & XQ_MILPRINT_SUMMER) != 0) && \
-        (((ctx->mode & XQ_ALGEBRA) == 0) || \
+    if (((ctx->mode & XQ_MILPRINT_SUMMER) == 0) && \
+        (((ctx->mode & XQ_ALGEBRA) != 0) || \
          (GDKgetenv("xquery_backend") == NULL) || 
(strcmp(GDKgetenv("xquery_backend"),"milprint_summer") != 0)))
         options |= COMPILE_OPTION_ALGEBRA;
 #endif


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to