From 08ef5ab10429383caca8527642953429bfd8b11c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=C5=BE=20Jerman?= Date: Thu, 9 Dec 2021 15:09:24 +0100 Subject: [PATCH] Add missing entry to the expr type registry --- pkg/qlng/ast_nodes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/qlng/ast_nodes.go b/pkg/qlng/ast_nodes.go index 1259dbf9a..fbdde60fe 100644 --- a/pkg/qlng/ast_nodes.go +++ b/pkg/qlng/ast_nodes.go @@ -342,7 +342,7 @@ func qlTypeRegistry(ref string) expr.Type { return &expr.UnsignedInteger{} case "Float", "Number": return &expr.Float{} - case "String": + case "String", "Select": return &expr.String{} case "DateTime": return &expr.DateTime{}