Changeset: 14242f8c4e94 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/14242f8c4e94
Modified Files:
        sql/odbc/tests/Tests/All
        testing/Mtest.py.in
Branch: Jun2023
Log Message:

merged with Sep2022


diffs (53 lines):

diff --git a/cmake/monetdb-defines.cmake b/cmake/monetdb-defines.cmake
--- a/cmake/monetdb-defines.cmake
+++ b/cmake/monetdb-defines.cmake
@@ -150,6 +150,7 @@ macro(monetdb_macro_variables)
   set(RHOME "${LIBR_HOME}")
   set(HAVE_GEOM ${GEOS_FOUND})
   set(HAVE_SHP ${GDAL_FOUND})
+  set(SANITIZER ${SANITIZER})
 
   if(PY3INTEGRATION)
     set(HAVE_LIBPY3 "${Python3_NumPy_FOUND}")
diff --git a/sql/odbc/tests/Tests/All b/sql/odbc/tests/Tests/All
--- a/sql/odbc/tests/Tests/All
+++ b/sql/odbc/tests/Tests/All
@@ -2,4 +2,4 @@ HAVE_ODBC?ODBCgetInfo
 HAVE_ODBC?ODBCmetadata
 HAVE_ODBC?ODBCStmtAttr
 HAVE_ODBC?ODBCtester
-HAVE_PYODBC?pyodbc-test
+HAVE_PYODBC&!SANITIZER?pyodbc-test
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
diff --git a/testing/Mtest.py.in b/testing/Mtest.py.in
--- a/testing/Mtest.py.in
+++ b/testing/Mtest.py.in
@@ -383,6 +383,7 @@ CONDITIONALS = {
     'HAVE_GETENTROPY'      : "@HAVE_GETENTROPY_FALSE@",
     'NATIVE_WIN32'         : "@NATIVE_WIN32_FALSE@",
     'NOT_WIN32'            : "@NOT_WIN32_FALSE@",
+    'SANITIZER'            : "@SANITIZER_FALSE@",
     # unknown at compile time;
     # hence, we set them only at runtime in main() below
     'KNOWNFAIL'            : False, # skip on release branch when not in 
testweb
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to