From bec1a2f038ff7e6540b0f1a80fcb2d5c650b2a49 Mon Sep 17 00:00:00 2001 From: Kangseok Thomas Lee Date: Wed, 17 Oct 2018 16:52:23 +0900 Subject: [PATCH] Reordering fields of String datetype (#4751) Other types has timestamp as first field, but only String type has value as first field. Signed-off-by: gangseok.lee --- promql/value.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/promql/value.go b/promql/value.go index 218f6c533..961f83184 100644 --- a/promql/value.go +++ b/promql/value.go @@ -47,8 +47,8 @@ const ( // String represents a string value. type String struct { - V string T int64 + V string } func (s String) String() string {