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

corrected syntax error in query


diffs (11 lines):

diff --git a/sql/test/sciql/Tests/sci04.sql b/sql/test/sciql/Tests/sci04.sql
--- a/sql/test/sciql/Tests/sci04.sql
+++ b/sql/test/sciql/Tests/sci04.sql
@@ -1,6 +1,6 @@
 INSERT INTO grid VALUES(1,1,25);
 
-DELETE matrix WHERE x = 2;
+DELETE FROM matrix WHERE x = 2;
 INSERT INTO matrix SELECT x-1, y, v FROM matrix WHERE x > 2;
 INSERT INTO matrix SELECT x, y, 0 FROM matrix WHERE x = 3;
 INSERT INTO matrix(v) SELECT v FROM stipes;
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to