This is an automated email from the ASF dual-hosted git repository.
mbudiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/main by this push:
new 5b5f39aa87 Disable test introduced in #43789 [CALCITE-7009] which
breaks main
5b5f39aa87 is described below
commit 5b5f39aa87eb39366022c44a2382afd8ea3d65be
Author: Mihai Budiu <[email protected]>
AuthorDate: Fri Jun 20 23:46:15 2025 +0200
Disable test introduced in #43789 [CALCITE-7009] which breaks main
Signed-off-by: Mihai Budiu <[email protected]>
---
core/src/test/resources/sql/scalar.iq | 2 ++
1 file changed, 2 insertions(+)
diff --git a/core/src/test/resources/sql/scalar.iq
b/core/src/test/resources/sql/scalar.iq
index 05a5277137..43aaa84d72 100644
--- a/core/src/test/resources/sql/scalar.iq
+++ b/core/src/test/resources/sql/scalar.iq
@@ -302,6 +302,7 @@ from (values (1), (3)) t1(id);
!ok
# Several scalar sub-queries reference different tables in FROM list
+!if (false) {
select
(select ename from emp where empno = empnos.empno) as emp_name,
(select dname from dept where deptno = deptnos.deptno) as dept_name
@@ -317,5 +318,6 @@ select
(4 rows)
!ok
+!}
# End scalar.iq