Changeset: e70fa039a974 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/e70fa039a974 Modified Files: sql/test/SQLancer/Tests/sqlancer22.test Branch: default Log Message:
At the moment approve this error (attempting to give a better error will be difficult) diffs (14 lines): diff --git a/sql/test/SQLancer/Tests/sqlancer22.test b/sql/test/SQLancer/Tests/sqlancer22.test --- a/sql/test/SQLancer/Tests/sqlancer22.test +++ b/sql/test/SQLancer/Tests/sqlancer22.test @@ -784,8 +784,8 @@ SELECT (SELECT MIN(x.x)) FROM (SELECT 1, statement error 42000!SELECT: cannot use non GROUP BY column 'x.y' in query results without an aggregate function SELECT x.y, MIN(x.x + x.y) FROM (SELECT 1, 2) x(x,y) -statement error 42000!SELECT: no such unary operator 'idontexist'(tinyint) -SELECT MAX(x), idontexist(x) FROM (SELECT 1) x(x) +statement error 42000!SELECT: cannot use non GROUP BY column 'x.x' in query results without an aggregate function +SELECT MAX(x), idontexist(x.x) FROM (SELECT 1) x(x) query I nosort SELECT ['1'] "like" [max(x.x), '', false] FROM (SELECT '1') x(x), (SELECT '1') y(y) _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
