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:
Kyle Brandt
2025-10-02 17:00:27 +00:00
committed by GitHub
parent d49ae31d4f
commit 3acb8aa20e
+2 -2
View File
@@ -14,8 +14,8 @@ const (
SQLDisplayFieldName = "__display_name__"
// These are not types in the SDK or dataplane contract yet.
numericFullLongType = "numeric_full_long"
timeseriesFullLongType = "time_series_full_long"
numericFullLongType = "numeric-full-long"
timeseriesFullLongType = "timeseries-full-long"
)
func ConvertToFullLong(frames data.Frames) (data.Frames, error) {