Changeset: 13f754bd3f0c for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/13f754bd3f0c Added Files: sql/test/BugTracker-2023/Tests/All sql/test/BugTracker-2023/Tests/ambiguous-identifiers-7372.test Branch: Sep2022 Log Message:
add new test for issue 7372 diffs (22 lines): diff --git a/sql/test/BugTracker-2023/Tests/All b/sql/test/BugTracker-2023/Tests/All new file mode 100644 --- /dev/null +++ b/sql/test/BugTracker-2023/Tests/All @@ -0,0 +1,1 @@ +ambiguous-identifiers-7372 diff --git a/sql/test/BugTracker-2023/Tests/ambiguous-identifiers-7372.test b/sql/test/BugTracker-2023/Tests/ambiguous-identifiers-7372.test new file mode 100644 --- /dev/null +++ b/sql/test/BugTracker-2023/Tests/ambiguous-identifiers-7372.test @@ -0,0 +1,11 @@ +statement ok +create table test (a INT) + +statement error 42000!SELECT: identifier 'a' ambiguous +select a from test a, test b, test c, test d, test e + +statement error 42000!SELECT: identifier 'a' ambiguous +select a from test a, test c, test d, test e + +statement error 42000!SELECT: identifier 'a' ambiguous +select SUM(a) from test a, test b, test c, test d, test e _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
