Update of /cvsroot/monetdb/pathfinder/compiler/include
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv14464/compiler/include

Modified Files:
      Tag: M5XQ
        builtins.h 
Log Message:
propagated changes of Thursday Nov 05 2009 - Monday Nov 09 2009
from the development trunk to the M5XQ branch

  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2009/11/05 - singhan: compiler/include/builtins.h,1.65
  XQuery full-text search support initial version!
  
  This initial version provides support to
  
  -ftcontains keyword,
  
  e.g., for $f in doc("menu.xml")//food[./name ftcontains "Belgian Waffles"]
  return $f
  The above query will return all the food nodes that has some relevancy over 
"Belgian Waffles"
  
  -initial score variable support
  
  e.g., for $f score $s in doc("menu.xml")//food[./name ftcontains "Belgian 
Waffles"]
  return $s
  The above query will return the relevancy score of all the matched food 
nodes, however since its an initial version, the support to this score variable 
is very limited.
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: builtins.h
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/include/builtins.h,v
retrieving revision 1.62.2.2
retrieving revision 1.62.2.3
diff -u -d -r1.62.2.2 -r1.62.2.3
--- builtins.h  13 Oct 2009 14:52:00 -0000      1.62.2.2
+++ builtins.h  9 Nov 2009 00:03:59 -0000       1.62.2.3
@@ -1298,6 +1298,11 @@
                                            PFla_op_t **side_effects,
                                            struct PFla_pair_t *args);
 
+struct PFla_pair_t PFbui_tijah_ftfun_score(const PFla_op_t *loop,
+                                           bool ordering,
+                                           PFla_op_t **side_effects,
+                                           struct PFla_pair_t *args);
+
 /*
  * The main query functions
  */
@@ -1359,6 +1364,17 @@
                                            struct PFla_pair_t *args);
 #endif
 
+
+
+#ifdef HAVE_PFTIJAH
+
+struct PFla_pair_t PFbui_op_fts_str (const PFla_op_t *loop,
+                                    bool ordering,
+                                    PFla_op_t **side_effects,
+                                    struct PFla_pair_t *args);
+
+#endif
+
 #endif   /* BUITLINS_H */
 
 /* vim:set shiftwidth=4 expandtab: */


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to