Skip to content

Commit

Permalink
Merge pull request #11534 from yongyiduan/dyy_hotfix
Browse files Browse the repository at this point in the history
feat:环境-节点管理列表支持按照状态等字段搜索 #11445
  • Loading branch information
mingshewhe authored Mar 7, 2025
2 parents 24d2bc8 + cc5a2e2 commit 81adf46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ class ThirdPartyAgentBuildDao {
): List<AgentBuildInfo> {
with(TDispatchThirdpartyAgentBuild.T_DISPATCH_THIRDPARTY_AGENT_BUILD) {
val sub = dslContext.select(DSL.max(ID).`as`("max_id"))
.from(this).groupBy(AGENT_ID).asTable("sub")
.from(this).where(AGENT_ID.`in`(agentIds)).groupBy(AGENT_ID).asTable("sub")
return dslContext.select(
PROJECT_ID,
AGENT_ID,
Expand Down

0 comments on commit 81adf46

Please sign in to comment.