Re: [Monetdb-developers] [Monetdb-pf-checkins] pathfinder/runtime serialize_dflt.mx, 1.19, 1.20 serialize_sax.mx, 1.8, 1.9
Jan, this as well as you previous checkin went to the development trunk, hence they will NOT be in the release! Stefan On Wed, Nov 08, 2006 at 09:48:26AM +0000, Jan Rittinger wrote:
Update of /cvsroot/monetdb/pathfinder/runtime In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20415/runtime
Modified Files: serialize_dflt.mx serialize_sax.mx Log Message: here comes the cleaning woman :)
Index: serialize_sax.mx =================================================================== RCS file: /cvsroot/monetdb/pathfinder/runtime/serialize_sax.mx,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- serialize_sax.mx 7 Nov 2006 17:02:35 -0000 1.8 +++ serialize_sax.mx 8 Nov 2006 09:48:23 -0000 1.9 @@ -166,7 +166,6 @@ static bool sax_init (XqueryCtx* ctx, char* args, char *restag) { - (void) ctx; (void) args; ctx->driverWs = (void *) restag; /* store result tag */ sax_init_isspecial(); @@ -180,8 +179,6 @@ static bool sax_handle_startDocument (XqueryCtx* ctx) { - (void)ctx; - if ( SAXOPHONE ) return emit_SAX_header(ctx); else @@ -197,7 +194,6 @@ static bool sax_handle_endDocument (XqueryCtx* ctx) { - if ( SAXOPHONE ) return emit_SAX_footer(); else @@ -239,7 +235,6 @@ static bool sax_handle_endElement (XqueryCtx* ctx, str prefix, str name) { - if ( SAXOPHONE ) { if ( !emit_SAX_event(ctx, "endElement",NULL,0) ) return PROBLEM;
Index: serialize_dflt.mx =================================================================== RCS file: /cvsroot/monetdb/pathfinder/runtime/serialize_dflt.mx,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- serialize_dflt.mx 7 Nov 2006 17:02:35 -0000 1.19 +++ serialize_dflt.mx 8 Nov 2006 09:48:23 -0000 1.20 @@ -683,8 +683,6 @@ static bool xml_seqItemSeparator (XqueryCtx* ctx, int kind_before, int kind_after) { - (void)ctx; - if ((XTRACT_KIND(kind_before) < ATOMIC) && (XTRACT_KIND(kind_after) < ATOMIC)) stream_write (ctx->out, &s_, 1, 1); /* ' ' */ @@ -747,7 +745,6 @@ typed_xml_seqItemStart (XqueryCtx* ctx, int kind) { char *item_start = 0; - (void)ctx;
switch (XTRACT_KIND(kind)) { case BOOL: @@ -813,7 +810,6 @@ typed_xml_seqItemEnd (XqueryCtx* ctx, int kind) { char *item_end = 0; - (void)ctx;
switch (XTRACT_KIND(kind)) { case BOOL: @@ -908,7 +904,6 @@ soap_xml_seqItemEnd (XqueryCtx* ctx, int kind) { char *item_end = 0; - (void)ctx;
switch (XTRACT_KIND(kind)) { case BOOL: @@ -977,7 +972,6 @@ static bool seq_seqItemStart (XqueryCtx* ctx, int kind) { - (void)ctx; (void)kind;
/* SQL-ish mode: write start of tuple and open string */
------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Monetdb-pf-checkins mailing list Monetdb-pf-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |
I know :) On 11/08/2006 10:58 AM, Stefan Manegold wrote with possible deletions:
Jan,
this as well as you previous checkin went to the development trunk, hence they will NOT be in the release!
Stefan
On Wed, Nov 08, 2006 at 09:48:26AM +0000, Jan Rittinger wrote:
Update of /cvsroot/monetdb/pathfinder/runtime In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20415/runtime
Modified Files: serialize_dflt.mx serialize_sax.mx Log Message: here comes the cleaning woman :)
Index: serialize_sax.mx =================================================================== RCS file: /cvsroot/monetdb/pathfinder/runtime/serialize_sax.mx,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- serialize_sax.mx 7 Nov 2006 17:02:35 -0000 1.8 +++ serialize_sax.mx 8 Nov 2006 09:48:23 -0000 1.9 @@ -166,7 +166,6 @@ static bool sax_init (XqueryCtx* ctx, char* args, char *restag) { - (void) ctx; (void) args; ctx->driverWs = (void *) restag; /* store result tag */ sax_init_isspecial(); @@ -180,8 +179,6 @@ static bool sax_handle_startDocument (XqueryCtx* ctx) { - (void)ctx; - if ( SAXOPHONE ) return emit_SAX_header(ctx); else @@ -197,7 +194,6 @@ static bool sax_handle_endDocument (XqueryCtx* ctx) { - if ( SAXOPHONE ) return emit_SAX_footer(); else @@ -239,7 +235,6 @@ static bool sax_handle_endElement (XqueryCtx* ctx, str prefix, str name) { - if ( SAXOPHONE ) { if ( !emit_SAX_event(ctx, "endElement",NULL,0) ) return PROBLEM;
Index: serialize_dflt.mx =================================================================== RCS file: /cvsroot/monetdb/pathfinder/runtime/serialize_dflt.mx,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- serialize_dflt.mx 7 Nov 2006 17:02:35 -0000 1.19 +++ serialize_dflt.mx 8 Nov 2006 09:48:23 -0000 1.20 @@ -683,8 +683,6 @@ static bool xml_seqItemSeparator (XqueryCtx* ctx, int kind_before, int kind_after) { - (void)ctx; - if ((XTRACT_KIND(kind_before) < ATOMIC) && (XTRACT_KIND(kind_after) < ATOMIC)) stream_write (ctx->out, &s_, 1, 1); /* ' ' */ @@ -747,7 +745,6 @@ typed_xml_seqItemStart (XqueryCtx* ctx, int kind) { char *item_start = 0; - (void)ctx;
switch (XTRACT_KIND(kind)) { case BOOL: @@ -813,7 +810,6 @@ typed_xml_seqItemEnd (XqueryCtx* ctx, int kind) { char *item_end = 0; - (void)ctx;
switch (XTRACT_KIND(kind)) { case BOOL: @@ -908,7 +904,6 @@ soap_xml_seqItemEnd (XqueryCtx* ctx, int kind) { char *item_end = 0; - (void)ctx;
switch (XTRACT_KIND(kind)) { case BOOL: @@ -977,7 +972,6 @@ static bool seq_seqItemStart (XqueryCtx* ctx, int kind) { - (void)ctx; (void)kind;
/* SQL-ish mode: write start of tuple and open string */
------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Monetdb-pf-checkins mailing list Monetdb-pf-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins
-- Jan Rittinger Database Systems Technische Universität München (Germany) http://www-db.in.tum.de/~rittinge/
participants (2)
-
Jan Rittinger
-
Stefan Manegold