Update of /cvsroot/monetdb/sql/src/test/BugTracker-2009/Tests
In directory 
23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv18127/src/test/BugTracker-2009/Tests

Added Files:
        union_leak.SF-2540169.1.sql.in 
Log Message:
propagated changes of Sunday Feb 01 2009 - Monday Feb 02 2009
from the Feb2009 branch to the development trunk

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2009/02/01 - stmane:
        src/test/BugTracker-2009/Tests/union_leak.SF-2540169.1.sql.in,1.1.2.1

added test for
[ 2540169 ] Memory leak and crash with UNION ALL
https://sourceforge.net/tracker/index.php?func=detail&aid=2540169&group_id=56967&atid=482468
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


--- NEW FILE: union_leak.SF-2540169.1.sql.in ---
CREATE TABLE databasetest1 ("float1" DOUBLE);
START TRANSACTION;
COPY 1000000 OFFSET 2 RECORDS INTO "databasetest1" FROM 
'$TSTSRCDIR/union_leak.SF-2540169.csv' USING DELIMITERS ',','\n';
COMMIT;
CREATE TABLE databasetest2 ("float1" DOUBLE);
START TRANSACTION;
COPY 1000000 OFFSET 1000002 RECORDS INTO "databasetest1" FROM 
'$TSTSRCDIR/union_leak.SF-2540169.csv' USING DELIMITERS ',','\n';
COMMIT;
CREATE VIEW databasetest AS
SELECT * FROM databasetest1
UNION ALL
SELECT * FROM databasetest2
;


------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Monetdb-sql-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-sql-checkins

Reply via email to