Changeset: f6f60b7ece57 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/f6f60b7ece57 Modified Files: sql/test/SQLancer/Tests/sqlancer22.test Branch: default Log Message:
An error message that we could improve diffs (13 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 @@ -769,6 +769,9 @@ 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) + 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]
