Changeset: 5c8c86b6bbe8 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5c8c86b6bbe8
Modified Files:
        sql/test/sciql/Tests/sci00.sql
Branch: sciql
Log Message:

Corrected error in the SciQL test query

the sequence "range" should also be surrounded by brackets '[' and ']'


diffs (11 lines):

diff --git a/sql/test/sciql/Tests/sci00.sql b/sql/test/sciql/Tests/sci00.sql
--- a/sql/test/sciql/Tests/sci00.sql
+++ b/sql/test/sciql/Tests/sci00.sql
@@ -1,4 +1,4 @@
-CREATE ARRAY A1( x integer DIMENSION[4], val float DEFAULT 0.0);
-CREATE ARRAY A2 ( x integer DIMENSION[0:4:1], val float DEFAULT 0.0);
+CREATE ARRAY A1( x integer DIMENSION[4], v float DEFAULT 0.0);
+CREATE ARRAY A2 ( x integer DIMENSION[0:4:1], v float DEFAULT 0.0);
 CREATE SEQUENCE range AS integer START WITH 0 INCREMENT BY 1 MAXVALUE 3;
-CREATE ARRAY A3 ( x integer DIMENSION range, val float DEFAULT 0.0);
+CREATE ARRAY A3 ( x integer DIMENSION [range], v float DEFAULT 0.0);
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to