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

Modified Files:
      Tag: xrpcdemo
        demo-xrpcmod.xq 
Log Message:
Index: compiler/mil/milprint_summer.c
- make sure try variable is not optimized away

Index: compiler/semantics/functions.c
- fix the atURI property as set to functions by pf

Index: runtime/pathfinder.mx
- do not restart any XRPC update call (to avoid restarts 
  in circular queries going into exclusive mode, thus
  causing deadlock)  
  
Index: runtime/pf_support.mx
- bad bug in docsused

Index: runtime/serialize.mx
- bug in serialization

Index: runtime/xrpc_client.mx
- do parse the response message of update queries
  (otherwise we loose the participant info)

Index: runtime/xrpc/demo/demo-xrpcmod.xq
- some fixes in the demo file
  (note: it is not consistent with the texts in the GUI)



U demo-xrpcmod.xq
Index: demo-xrpcmod.xq
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/runtime/xrpc/demo/Attic/demo-xrpcmod.xq,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- demo-xrpcmod.xq     12 Jun 2008 01:22:50 -0000      1.1.2.1
+++ demo-xrpcmod.xq     12 Jun 2008 14:47:30 -0000      1.1.2.2
@@ -68,7 +68,7 @@
           $doc as xs:string,
           $pid as xs:string)
 {
-  do delete doc($doc)//person[./@pid=$pid]
+  do delete doc($doc)//person[./@id=$pid]
 };
 
 declare updating function dfx:deletePersonNested(
@@ -76,7 +76,7 @@
                        $doc as xs:string,
                        $pid as xs:string)
 {
-  (do delete doc($doc)//person[./@pid=$pid],
+  (do delete doc($doc)//person[./@id=$pid],
    for $dst in $dsts return
          execute at {$dst} {dfx:deletePerson($doc, $pid)})
 };


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