Re: [Monetdb-developers] [Monetdb-sql-checkins] sql/src/backends/monet5 sql.mx, 1.190, 1.191 sql_scenario.mx, 1.221, 1.222
On 2006-11-03 10:02, Niels Nes wrote:
Update of /cvsroot/monetdb/sql/src/backends/monet5 In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv20243/src/backends/monet5
Modified Files: sql.mx sql_scenario.mx Log Message: sql_scenario: reset stream by seting eof=1
approved tests need because of logger changes
Added test for identifier bug (ADT2006/sander.sql) We now disallow invalied identifiers in double quotes (and don't fallback to strings in those cases) Approved tests affected by this change
rel_optimize: icc compilation fix
Index: sql_scenario.mx =================================================================== RCS file: /cvsroot/monetdb/sql/src/backends/monet5/sql_scenario.mx,v retrieving revision 1.221 retrieving revision 1.222 diff -u -d -r1.221 -r1.222 --- sql_scenario.mx 27 Oct 2006 13:37:44 -0000 1.221 +++ sql_scenario.mx 3 Nov 2006 09:02:54 -0000 1.222 @@ -315,8 +315,10 @@ /* TODO reset global variables */ }
- c->fdin->pos += c->yycur; + //c->fdin->pos += c->yycur;
Niels, you should know better than this...
c->yycur = 0; /* make sure we don't reuse the used input */ + c->fdin->eof = 1; /* force prompt on first iteration */ + initSQLreferences();
return MAL_SUCCEED;
Index: sql.mx =================================================================== RCS file: /cvsroot/monetdb/sql/src/backends/monet5/sql.mx,v retrieving revision 1.190 retrieving revision 1.191 diff -u -d -r1.190 -r1.191 --- sql.mx 27 Oct 2006 18:23:50 -0000 1.190 +++ sql.mx 3 Nov 2006 09:02:54 -0000 1.191 @@ -723,7 +723,6 @@ b->currColumn = NULL; b->currKey = NULL; b->currIndex = NULL; - //b->code = NULL; b->vtop = 0; b->Tparse = b->Toptimize = b->Tschedule = b->Texec = 0; b->qry = NULL;
------------------------------------------------------------------------- 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-sql-checkins mailing list Monetdb-sql-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins
-- Sjoerd Mullender
On 03-11-2006 10:21:59 +0100, Sjoerd Mullender wrote:
- c->fdin->pos += c->yycur; + //c->fdin->pos += c->yycur;
Niels, you should know better than this...
- //b->code = NULL; b->vtop = 0;
here too.
participants (2)
-
Fabian Groffen
-
Sjoerd Mullender