Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Fix to analysis GROUP BY #632

Merged
merged 1 commit into from
Oct 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go/inst/analysis_dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ func GetReplicationAnalysis(clusterName string, hints *ReplicationAnalysisHints)
SELECT
master_instance.hostname,
master_instance.port,
master_instance.data_center,
master_instance.physical_environment,
MIN(master_instance.data_center) AS data_center,
MIN(master_instance.physical_environment) AS physical_environment,
MIN(master_instance.master_host) AS master_host,
MIN(master_instance.master_port) AS master_port,
MIN(master_instance.cluster_name) AS cluster_name,
Expand Down