This is an automated email from the ASF dual-hosted git repository.
linxinyuan pushed a commit to branch xinyuan-cm-for-loop-mat-dcm
in repository https://gitbox.apache.org/repos/asf/texera.git
The following commit(s) were added to refs/heads/xinyuan-cm-for-loop-mat-dcm by
this push:
new f158f52e78 update
f158f52e78 is described below
commit f158f52e78db1859a7ecd10217d4eb53a27b43c6
Author: Xinyuan Lin <[email protected]>
AuthorDate: Fri Feb 6 19:25:01 2026 -0800
update
---
.../apache/texera/amber/engine/architecture/scheduling/Schedule.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/amber/src/main/scala/org/apache/texera/amber/engine/architecture/scheduling/Schedule.scala
b/amber/src/main/scala/org/apache/texera/amber/engine/architecture/scheduling/Schedule.scala
index 47474b8478..74f11384d1 100644
---
a/amber/src/main/scala/org/apache/texera/amber/engine/architecture/scheduling/Schedule.scala
+++
b/amber/src/main/scala/org/apache/texera/amber/engine/architecture/scheduling/Schedule.scala
@@ -36,7 +36,7 @@ case class Schedule(private val levelSets: Map[Int,
Set[Region]]) extends Iterat
def loopNext(): Set[Region] = {
val regions = levelSets(currentLevel)
if(regions.exists(_.getOperators.exists(_.id.logicalOpId.id.startsWith("LoopEnd-operator-"))))
currentLevel = loopStartLevel
- else currentLevel += 1
+ currentLevel += 1
regions
}
}