This is an automated email from the ASF dual-hosted git repository.
jiadongb pushed a commit to branch feat/add-model
in repository https://gitbox.apache.org/repos/asf/texera.git
The following commit(s) were added to refs/heads/feat/add-model by this push:
new 1294dca6f9 Update WorkflowExecutionsResource.scala
1294dca6f9 is described below
commit 1294dca6f96691512433b1d88e28bb84d530c7a5
Author: Jiadong Bai <[email protected]>
AuthorDate: Fri Aug 29 14:34:19 2025 -0700
Update WorkflowExecutionsResource.scala
fix exec record
Signed-off-by: Jiadong Bai <[email protected]>
---
.../resource/dashboard/user/workflow/WorkflowExecutionsResource.scala | 3 ---
1 file changed, 3 deletions(-)
diff --git
a/core/amber/src/main/scala/edu/uci/ics/texera/web/resource/dashboard/user/workflow/WorkflowExecutionsResource.scala
b/core/amber/src/main/scala/edu/uci/ics/texera/web/resource/dashboard/user/workflow/WorkflowExecutionsResource.scala
index c3b63a2df8..439491ada2 100644
---
a/core/amber/src/main/scala/edu/uci/ics/texera/web/resource/dashboard/user/workflow/WorkflowExecutionsResource.scala
+++
b/core/amber/src/main/scala/edu/uci/ics/texera/web/resource/dashboard/user/workflow/WorkflowExecutionsResource.scala
@@ -89,9 +89,6 @@ object WorkflowExecutionsResource {
val executions = context
.select(WORKFLOW_EXECUTIONS.EID)
.from(WORKFLOW_EXECUTIONS)
- .join(WORKFLOW_VERSION)
- .on(WORKFLOW_EXECUTIONS.VID.eq(WORKFLOW_VERSION.VID))
-
.where(WORKFLOW_VERSION.WID.eq(wid).and(WORKFLOW_EXECUTIONS.CUID.eq(cuid)))
.fetchInto(classOf[Integer])
.asScala
.toList