Changeset: 4507fb4777f3 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/4507fb4777f3
Modified Files:
        sql/test/nested/Tests/fileloader.test.in
        sql/test/nested/Tests/webclicks.test.in
Branch: nestedtypes
Log Message:

fixed file locations


diffs (34 lines):

diff --git a/sql/test/nested/Tests/fileloader.test.in 
b/sql/test/nested/Tests/fileloader.test.in
--- a/sql/test/nested/Tests/fileloader.test.in
+++ b/sql/test/nested/Tests/fileloader.test.in
@@ -2,8 +2,7 @@ statement ok
 create type event as (id int, type varchar)
 
 query IT
-select t.id, t.type from ( select cast(t.json as event) as t from (select json 
from r'/home/niels/data/rc/default/sql/test/nested/Tests/events.json') t );
-#select t.id, t.type from ( select cast(t.json as event) as t from (select 
json from r'$TSTSRCDIR/events.json') t );
+select t.id, t.type from ( select cast(t.json as event) as t from (select json 
from r'$TSTSRCDIR/events.json') t );
 ----
 1
 click
diff --git a/sql/test/nested/Tests/webclicks.test.in 
b/sql/test/nested/Tests/webclicks.test.in
--- a/sql/test/nested/Tests/webclicks.test.in
+++ b/sql/test/nested/Tests/webclicks.test.in
@@ -46,7 +46,7 @@ select count(*) from r'$TSTSRCDIR/webcli
 2
 
 query TTTTTT
-select e.eventid, e.sessionid, e.userid, e.event, e.timestamp, e.user_agent 
from ( select cast(t.json as event) as e from (select json from 
r'/home/niels/data/rc/default/sql/test/nested/Tests/webclicks.json') t);
+select e.eventid, e.sessionid, e.userid, e.event, e.timestamp, e.user_agent 
from ( select cast(t.json as event) as e from (select json from 
r'$TSTSRCDIR/webclicks.json') t);
 ----
 996257967-103007874
 47f07c1399c9c6bd1012861f9c5c958e042732e259b909e077f7e8967b650c75
@@ -62,7 +62,7 @@ 2024-11-30 22:13:37.823000
 Mozilla
 
 query TT
-select e.eventid, el.element.key from ( select cast(t.json as event) as e from 
(select json from 
r'/home/niels/data/rc/default/sql/test/nested/Tests/webclicks.json') t), 
unnest(e.location.list) el
+select e.eventid, el.element.key from ( select cast(t.json as event) as e from 
(select json from r'$TSTSRCDIR/webclicks.json') t), unnest(e.location.list) el
 ----
 996257967-103007874
 hash
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to