From 91ea2cd6e0518cbd559a7d3328ac5007ea222f61 Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Wed, 4 Sep 2024 10:25:11 +0100 Subject: [PATCH] internal/command: Avoid ignoring ephemeralasnull function (#35651) --- internal/command/metadata_functions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/command/metadata_functions.go b/internal/command/metadata_functions.go index ca8367326f..0b5ba14f88 100644 --- a/internal/command/metadata_functions.go +++ b/internal/command/metadata_functions.go @@ -12,7 +12,7 @@ import ( ) var ( - ignoredFunctions = []string{"map", "list", "core::map", "core::list", "ephemeralasnull", "core::ephemeralasnull"} + ignoredFunctions = []string{"map", "list", "core::map", "core::list"} ) // MetadataFunctionsCommand is a Command implementation that prints out information