Changeset: ed01e597ea6f for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ed01e597ea6f Modified Files: sql/test/sciql/Tests/sciql15.sql sql/test/sciql/Tests/texture.sql Branch: sciql Log Message:
minor changes to get rid of parser error diffs (36 lines): diff --git a/sql/test/sciql/Tests/sciql15.sql b/sql/test/sciql/Tests/sciql15.sql --- a/sql/test/sciql/Tests/sciql15.sql +++ b/sql/test/sciql/Tests/sciql15.sql @@ -1,4 +1,4 @@ -SELECT x, distance(matrix, ?V) AS dist +SELECT x, distance(matrix, V) AS dist FROM matrix GROUP BY matrix[x][*]; ORDER BY dist diff --git a/sql/test/sciql/Tests/texture.sql b/sql/test/sciql/Tests/texture.sql --- a/sql/test/sciql/Tests/texture.sql +++ b/sql/test/sciql/Tests/texture.sql @@ -2,12 +2,12 @@ -- see http://www.fp.ucalgary.ca/mhallbey for a tutorial on its definition -- the examples below are taken from it -create array img( +create array img2( x int dimension[0:4], y int dimension[0:4], v int default 0 ); -insert into img values (0,1,1),(0,1,1),(0,2,2),(2,3,3); +insert into img2 values (0,1,1),(0,1,1),(0,2,2),(2,3,3); -- the count matrix create array corrCnt( @@ -15,7 +15,7 @@ y int dimension[0:4], cnt int default 0); insert into corrCnt select A[x][y].v, A[x+1][y].v, count(*) -from img as A +from img2 as A group by A[x][y].v, A[x+1][y].v; -- the probability distribution _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
