From 6d3d4c96d30bfc34d588a560c8944b470e0c40b6 Mon Sep 17 00:00:00 2001 From: Regan Laitila Date: Wed, 16 Mar 2022 23:07:52 -0400 Subject: [PATCH] adds 'any' to primitive types as adhoc fix (#1162) --- schema.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schema.go b/schema.go index 8f25d6f7d..0e72f65d7 100644 --- a/schema.go +++ b/schema.go @@ -104,7 +104,8 @@ func IsGolangPrimitiveType(typeName string) bool { "float32", "float64", "bool", - "string": + "string", + "any": return true }