chore: make a run of gofumpt

This commit is contained in:
Vincent Bernat
2025-08-05 06:21:19 +02:00
parent 209cbe0d61
commit 98eb1bdba5
32 changed files with 173 additions and 123 deletions

View File

@@ -57,7 +57,8 @@ func (input graphSankeyHandlerInput) toSQL() (string, error) {
// With
with := []string{
fmt.Sprintf("source AS (%s)", input.sourceSelect()),
fmt.Sprintf(`(SELECT MAX(TimeReceived) - MIN(TimeReceived) FROM source WHERE %s) AS range`, where)}
fmt.Sprintf(`(SELECT MAX(TimeReceived) - MIN(TimeReceived) FROM source WHERE %s) AS range`, where),
}
with = append(with, selectSankeyRowsByLimitType(input, dimensions, where))
sqlQuery := fmt.Sprintf(`