mirror of
https://github.com/dataease/dataease.git
synced 2026-05-15 13:32:18 +08:00
fix(血源分析): 优化血源关系查询结果
修复 Excel 数据集的引用未正确显示,去除查询结果中重复的部分。
This commit is contained in:
@@ -234,6 +234,7 @@
|
||||
group by sa.auth_source
|
||||
) pg_auth on pg_auth.id = pg.id
|
||||
where dt.id=#{datasetId,jdbcType=VARCHAR}
|
||||
group by id,panel_id
|
||||
order by id
|
||||
</select>
|
||||
</mapper>
|
||||
|
||||
@@ -239,6 +239,7 @@
|
||||
group by sa.auth_source
|
||||
) pg_auth on pg_auth.id = pg.id
|
||||
where ds.id=#{datasourceId,jdbcType=VARCHAR}
|
||||
group by id,panel_id
|
||||
order by id
|
||||
</select>
|
||||
</mapper>
|
||||
|
||||
@@ -285,7 +285,7 @@
|
||||
)
|
||||
group by sa.auth_source
|
||||
) dt_auth on dt.id = dt_auth.id
|
||||
join datasource ds on dt.data_source_id = ds.id
|
||||
left join datasource ds on dt.data_source_id = ds.id
|
||||
left join
|
||||
(
|
||||
select
|
||||
@@ -318,7 +318,8 @@
|
||||
group by sa.auth_source
|
||||
) ds_auth on ds_auth.id = ds.id
|
||||
where pg.id=#{panelId,jdbcType=VARCHAR}
|
||||
group by dt.id
|
||||
group by id,dt_id
|
||||
order by id
|
||||
</select>
|
||||
|
||||
<select id="listPanelByUser" resultType="io.dataease.plugins.common.base.domain.PanelGroup"
|
||||
|
||||
Reference in New Issue
Block a user