Changeset: 28a788eacbe5 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=28a788eacbe5
Modified Files:
sql/test/Tests/copy_into.sql.in
Branch: Aug2011
Log Message:
Stick temporary test file into $TSTTRGDIR so that it gets removed.
Mtest has logic to remove extra files created in $TSTTRGDIR, so make
use of that.
diffs (17 lines):
diff --git a/sql/test/Tests/copy_into.sql.in b/sql/test/Tests/copy_into.sql.in
--- a/sql/test/Tests/copy_into.sql.in
+++ b/sql/test/Tests/copy_into.sql.in
@@ -5,11 +5,11 @@ insert into copyouttest values ('','');
insert into copyouttest values (' Test ','');
select * from copyouttest;
-copy select * from copyouttest into '$QTSTTRGBASE/mTests/x.dat' delimiters
'[]', '\n';
+copy select * from copyouttest into '$QTSTTRGDIR/x.dat' delimiters '[]', '\n';
drop table copyouttest;
create table copyintest ( str VARCHAR(20), str2 VARCHAR(20));
-copy into copyintest from '$QTSTTRGBASE/mTests/x.dat' delimiters '[]', '\n',
'"';
+copy into copyintest from '$QTSTTRGDIR/x.dat' delimiters '[]', '\n', '"';
select * from copyintest;
drop table copyintest;
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list