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

Modified Files:
        physical.h physical_mnemonic.h 
Log Message:
Physical level implementation for the error operator.


Index: physical_mnemonic.h
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/include/physical_mnemonic.h,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- physical_mnemonic.h 6 Dec 2007 08:42:37 -0000       1.24
+++ physical_mnemonic.h 11 Dec 2007 14:25:55 -0000      1.25
@@ -177,6 +177,7 @@
 /** empty fragment list */
 #define empty_frag()         PFpa_empty_frag ()
 
+#define error(a)             PFpa_error ((a))
 #define cond_err(a,b,c,d)    PFpa_cond_err ((a), (b), (c), (d))
 #define nil()                PFpa_nil ()
 #define trace(a,b,c,d)       PFpa_trace ((a),(b),(c),(d))

Index: physical.h
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/include/physical.h,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- physical.h  6 Dec 2007 08:42:36 -0000       1.32
+++ physical.h  11 Dec 2007 14:25:55 -0000      1.33
@@ -127,6 +127,7 @@
     , pa_fragment       = 133
     , pa_frag_union     = 134
     , pa_empty_frag     = 135
+    , pa_error          = 139 /**< error operator */
     , pa_cond_err       = 140 /**< conditional error operator */
     , pa_nil            = 141 /**< end of the list of parameters */
     , pa_trace          = 142 /**< debug operator */
@@ -839,6 +840,11 @@
 PFpa_op_t *PFpa_empty_frag (void);
 
 /**
+ * Constructor for error
+ */
+PFpa_op_t * PFpa_error (const PFpa_op_t *n);
+
+/**
  * Constructor for conditional error
  */
 PFpa_op_t * PFpa_cond_err (const PFpa_op_t *n, const PFpa_op_t *err,


-------------------------------------------------------------------------
SF.Net email is sponsored by: 
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