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 13:00:27 -04:00 committed by GitHub
parent d49ae31d4f
commit 3acb8aa20e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

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) {