mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 01:15:46 +08:00
fix postgres to have precision of ms (#33853)
This commit is contained in:
@ -109,7 +109,7 @@ func (m *postgresMacroEngine) evaluateMacro(name string, args []string) (string,
|
||||
}
|
||||
|
||||
if m.timescaledb {
|
||||
return fmt.Sprintf("time_bucket('%.1fs',%s)", interval.Seconds(), args[0]), nil
|
||||
return fmt.Sprintf("time_bucket('%.3fs',%s)", interval.Seconds(), args[0]), nil
|
||||
}
|
||||
|
||||
return fmt.Sprintf(
|
||||
|
Reference in New Issue
Block a user