mirror of https://github.com/grafana/grafana.git
SQL Expressions: Fix string constants in frame types (#111946)
s/time_series/timeseries and change from underscores to hyphens in numeric and ts types This makes it more consistent with the other timeseries kind strings
This commit is contained in:
parent
d49ae31d4f
commit
3acb8aa20e
|
@ -14,8 +14,8 @@ const (
|
||||||
SQLDisplayFieldName = "__display_name__"
|
SQLDisplayFieldName = "__display_name__"
|
||||||
|
|
||||||
// These are not types in the SDK or dataplane contract yet.
|
// These are not types in the SDK or dataplane contract yet.
|
||||||
numericFullLongType = "numeric_full_long"
|
numericFullLongType = "numeric-full-long"
|
||||||
timeseriesFullLongType = "time_series_full_long"
|
timeseriesFullLongType = "timeseries-full-long"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ConvertToFullLong(frames data.Frames) (data.Frames, error) {
|
func ConvertToFullLong(frames data.Frames) (data.Frames, error) {
|
||||||
|
|
Loading…
Reference in New Issue