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

Modified Files:
      Tag: PF_ROX
        physical.h 
Log Message:
propagated changes of Thursday May 22 2008 - Saturday May 24 2008
from the development trunk to the PF_ROX branch

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008/05/22 - sjoerd:
        runtime/pf_support.mx,1.299(Current_DailyBuild-24,Current_DailyBuild-23)
Fixed some type punning problems.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008/05/23 - sjoerd: NT/Makefile,1.20(Current_DailyBuild-24)
        
NT/MonetDB4-XQuery/MonetDB4-XQuery64.sln,1.1(Stable_DailyBuild-24,Current_DailyBuild-24)
        
NT/MonetDB4-XQuery/MonetDB4-XQuery64.vdproj,1.1(Stable_DailyBuild-24,Current_DailyBuild-24)
Added 64 bit Windows installer.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008/05/23 - sjoerd:
        
NT/MonetDB4-XQuery/MonetDB4-XQuery.vdproj,1.3(Stable_DailyBuild-24,Current_DailyBuild-24)
Use registry to store where the product is installed.
This means you only get to choose the location in MonetDB-Common.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008/05/23 - tsheyar:
        compiler/algebra/prop/prop_key.c,1.47(Current_DailyBuild-24)
-- some recently added property inference (for path steps) was to optimistic.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008/05/23 - tsheyar:
        compiler/semantics/subtyping.c,1.48(Current_DailyBuild-24)
-- Complete the hierarchy information (integer <-> decimal) for disjoint types.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2008/05/23 - lsidir: compiler/algebra/physical.c,1.69(Current_DailyBuild-24)
        compiler/algebra/planner.c,1.62(Current_DailyBuild-24)
        compiler/include/physical.h,1.45(Current_DailyBuild-24)
        compiler/mil/milgen.brg,1.157(Current_DailyBuild-24)
        compiler/mil/milprint.c,1.78(Current_DailyBuild-24)
implementation for id/idref...

works only for elements for now, but I wanted to commit before the branching.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


U physical.h
Index: physical.h
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/include/physical.h,v
retrieving revision 1.36.4.4
retrieving revision 1.36.4.5
diff -u -d -r1.36.4.4 -r1.36.4.5
--- physical.h  22 May 2008 08:48:33 -0000      1.36.4.4
+++ physical.h  24 May 2008 10:51:33 -0000      1.36.4.5
@@ -347,9 +347,10 @@
     /* semantic content for physical operator of function fn:id/idref */
     struct {
         bool            id;       /**< id or idref */
-        PFalg_att_t     item_res; /**< column to store the resulting nodes */
+        PFalg_att_t     iter;     /**< the loop relation */
         PFalg_att_t     item;     /**< column to look up the context nodes */
         PFalg_att_t     item_doc; /**< column to store the fragment info */
+        PFalg_att_t     item_res; /**< column to store the resulting nodes */
     } findnodes;
 };
 /** semantic content in physical algebra operators */
@@ -841,10 +842,11 @@
  * Constructor for finding nodes based on id/idref
  */
 PFpa_op_t *
-PFpa_findnodes (const PFpa_op_t *doc, const PFpa_op_t *n,
+PFpa_findnodes (const PFpa_op_t *n,
+                PFalg_att_t iter,
                 PFalg_att_t item,
-                PFalg_att_t item_doc,
                 PFalg_att_t item_res,
+                PFalg_att_t item_doc,
                 bool id);
 
 #endif  /* PHYSICAL_H */


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
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