From 3acb8aa20e2ac728b8e7323cc98221ff3a35f218 Mon Sep 17 00:00:00 2001 From: Kyle Brandt Date: Thu, 2 Oct 2025 13:00:27 -0400 Subject: [PATCH] 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 --- pkg/expr/convert_to_full_long.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/expr/convert_to_full_long.go b/pkg/expr/convert_to_full_long.go index 6c17badb1d8..dd626ca6421 100644 --- a/pkg/expr/convert_to_full_long.go +++ b/pkg/expr/convert_to_full_long.go @@ -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) {