Update of /cvsroot/monetdb/pathfinder/compiler/algebra/opt
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv10454/algebra/opt

Modified Files:
        opt_join_graph.c 
Log Message:
-- Introduced a new column-name-origin property that enhances the column names
  in the DOT generated algebra plans. If a column stems from a ref_tbl or a
  path step we now keep the original name throughout the plan.
  (Use pf-option -fN to print the mapping of original names.)

-- Make property usage a little bit more defensive. Instead of !PFprop_icol
  a new function PFprop_not_icol is introduced that copes correctly with
  missing property information.


Index: opt_join_graph.c
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/algebra/opt/opt_join_graph.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- opt_join_graph.c    17 Mar 2010 21:36:54 -0000      1.31
+++ opt_join_graph.c    17 Mar 2010 22:00:43 -0000      1.32
@@ -163,7 +163,7 @@
                        elsewhere. */
                     for (j = 0; j < clsize (collist); j++)
                         if (clat (collist, j) == p->sem.rowid.res ||
-                            !PFprop_icol (p->prop, clat (collist, j)))
+                            PFprop_not_icol (p->prop, clat (collist, j)))
                             break;
                     if (j == clsize (collist)) {
                         PFord_ordering_t sortby = PFordering ();


------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to