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

Modified Files:
        logdebug.c 
Log Message:
* Algebra / MIL implementation of XQuery builtin function fn:translate.
* Erase trailing space chars.
* Introduce new algebra types for the document management functions:
   - aat_docmgmt
   - aat_str1
   - aat_str2
* Algebra implementation of the following document management functions:
   - pf:add-doc(str,str)
   - pf:add-doc(str,str, str)
   - pf:add-doc(str,str, int)
   - pf:add-doc(str,str, str, int)
   - pf:del-doc(str)
  mil code generation and runtime DocmgmTape function are still missing.


Index: logdebug.c
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/debug/logdebug.c,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -d -r1.88 -r1.89
--- logdebug.c  15 Jan 2008 13:57:14 -0000      1.88
+++ logdebug.c  18 Jan 2008 16:11:37 -0000      1.89
@@ -1340,6 +1340,8 @@
         
         if (n->schema.items[i].type & aat_update)
             PFarray_printf (xml, "update");
+        else if (n->schema.items[i].type & aat_docmgmt)
+            PFarray_printf (xml, "docmgmt");
         else
             for (PFalg_simple_type_t t = 1; t; t <<= 1) {
                 if (t & n->schema.items[i].type) {


-------------------------------------------------------------------------
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