mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
FIxed syntaxis mistake unixEpochNanoFrom and unixEpochNanoTo
This commit is contained in:
parent
ed6782402b
commit
3801a75131
@ -102,9 +102,9 @@ func (m *msSqlMacroEngine) evaluateMacro(name string, args []string) (string, er
|
|||||||
}
|
}
|
||||||
return fmt.Sprintf("%s >= %d AND %s <= %d", args[0], m.timeRange.GetFromAsTimeUTC().UnixNano(), args[0], m.timeRange.GetToAsTimeUTC().UnixNano()), nil
|
return fmt.Sprintf("%s >= %d AND %s <= %d", args[0], m.timeRange.GetFromAsTimeUTC().UnixNano(), args[0], m.timeRange.GetToAsTimeUTC().UnixNano()), nil
|
||||||
case "__unixEpochNanoFrom":
|
case "__unixEpochNanoFrom":
|
||||||
return fmt.Sprintf("'%d'", m.timeRange.GetFromAsTimeUTC().UnixNano()), nil
|
return fmt.Sprintf("%d", m.timeRange.GetFromAsTimeUTC().UnixNano()), nil
|
||||||
case "__unixEpochNanoTo":
|
case "__unixEpochNanoTo":
|
||||||
return fmt.Sprintf("'%d'", m.timeRange.GetToAsTimeUTC().UnixNano()), nil
|
return fmt.Sprintf("%d", m.timeRange.GetToAsTimeUTC().UnixNano()), nil
|
||||||
case "__unixEpochGroup":
|
case "__unixEpochGroup":
|
||||||
if len(args) < 2 {
|
if len(args) < 2 {
|
||||||
return "", fmt.Errorf("macro %v needs time column and interval and optional fill value", name)
|
return "", fmt.Errorf("macro %v needs time column and interval and optional fill value", name)
|
||||||
|
@ -142,14 +142,14 @@ func TestMacroEngine(t *testing.T) {
|
|||||||
sql, err := engine.Interpolate(query, timeRange, "select $__unixEpochNanoFrom()")
|
sql, err := engine.Interpolate(query, timeRange, "select $__unixEpochNanoFrom()")
|
||||||
So(err, ShouldBeNil)
|
So(err, ShouldBeNil)
|
||||||
|
|
||||||
So(sql, ShouldEqual, fmt.Sprintf("select '%d'", from.UnixNano()))
|
So(sql, ShouldEqual, fmt.Sprintf("select %d", from.UnixNano()))
|
||||||
})
|
})
|
||||||
|
|
||||||
Convey("interpolate __unixEpochNanoTo function", func() {
|
Convey("interpolate __unixEpochNanoTo function", func() {
|
||||||
sql, err := engine.Interpolate(query, timeRange, "select $__unixEpochNanoTo()")
|
sql, err := engine.Interpolate(query, timeRange, "select $__unixEpochNanoTo()")
|
||||||
So(err, ShouldBeNil)
|
So(err, ShouldBeNil)
|
||||||
|
|
||||||
So(sql, ShouldEqual, fmt.Sprintf("select '%d'", to.UnixNano()))
|
So(sql, ShouldEqual, fmt.Sprintf("select %d", to.UnixNano()))
|
||||||
})
|
})
|
||||||
|
|
||||||
Convey("interpolate __unixEpochGroup function", func() {
|
Convey("interpolate __unixEpochGroup function", func() {
|
||||||
|
@ -128,9 +128,9 @@ func (m *postgresMacroEngine) evaluateMacro(name string, args []string) (string,
|
|||||||
}
|
}
|
||||||
return fmt.Sprintf("%s >= %d AND %s <= %d", args[0], m.timeRange.GetFromAsTimeUTC().UnixNano(), args[0], m.timeRange.GetToAsTimeUTC().UnixNano()), nil
|
return fmt.Sprintf("%s >= %d AND %s <= %d", args[0], m.timeRange.GetFromAsTimeUTC().UnixNano(), args[0], m.timeRange.GetToAsTimeUTC().UnixNano()), nil
|
||||||
case "__unixEpochNanoFrom":
|
case "__unixEpochNanoFrom":
|
||||||
return fmt.Sprintf("'%d'", m.timeRange.GetFromAsTimeUTC().UnixNano()), nil
|
return fmt.Sprintf("%d", m.timeRange.GetFromAsTimeUTC().UnixNano()), nil
|
||||||
case "__unixEpochNanoTo":
|
case "__unixEpochNanoTo":
|
||||||
return fmt.Sprintf("'%d'", m.timeRange.GetToAsTimeUTC().UnixNano()), nil
|
return fmt.Sprintf("%d", m.timeRange.GetToAsTimeUTC().UnixNano()), nil
|
||||||
case "__unixEpochGroup":
|
case "__unixEpochGroup":
|
||||||
if len(args) < 2 {
|
if len(args) < 2 {
|
||||||
return "", fmt.Errorf("macro %v needs time column and interval and optional fill value", name)
|
return "", fmt.Errorf("macro %v needs time column and interval and optional fill value", name)
|
||||||
|
@ -125,14 +125,14 @@ func TestMacroEngine(t *testing.T) {
|
|||||||
sql, err := engine.Interpolate(query, timeRange, "select $__unixEpochNanoFrom()")
|
sql, err := engine.Interpolate(query, timeRange, "select $__unixEpochNanoFrom()")
|
||||||
So(err, ShouldBeNil)
|
So(err, ShouldBeNil)
|
||||||
|
|
||||||
So(sql, ShouldEqual, fmt.Sprintf("select '%d'", from.UnixNano()))
|
So(sql, ShouldEqual, fmt.Sprintf("select %d", from.UnixNano()))
|
||||||
})
|
})
|
||||||
|
|
||||||
Convey("interpolate __unixEpochNanoTo function", func() {
|
Convey("interpolate __unixEpochNanoTo function", func() {
|
||||||
sql, err := engine.Interpolate(query, timeRange, "select $__unixEpochNanoTo()")
|
sql, err := engine.Interpolate(query, timeRange, "select $__unixEpochNanoTo()")
|
||||||
So(err, ShouldBeNil)
|
So(err, ShouldBeNil)
|
||||||
|
|
||||||
So(sql, ShouldEqual, fmt.Sprintf("select '%d'", to.UnixNano()))
|
So(sql, ShouldEqual, fmt.Sprintf("select %d", to.UnixNano()))
|
||||||
})
|
})
|
||||||
|
|
||||||
Convey("interpolate __unixEpochGroup function", func() {
|
Convey("interpolate __unixEpochGroup function", func() {
|
||||||
|
Loading…
Reference in New Issue
Block a user