From d2f169ecd28a1ee40c456fa93effb58fe4c2f103 Mon Sep 17 00:00:00 2001 From: Almann Goo Date: Wed, 20 Jul 2022 15:53:39 -0700 Subject: [PATCH] fix: removes cast function definition Given that the `Expression` node has an explicit `Cast` variant that was added in #88, the `cast` function definition (added in #152) seems redundant. BREAKING CHANGE: Existing plans that are modeling `cast` with this built-in function definition over the expression will not be valid. --- extensions/functions_cast.yaml | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 extensions/functions_cast.yaml diff --git a/extensions/functions_cast.yaml b/extensions/functions_cast.yaml deleted file mode 100644 index 245d27946..000000000 --- a/extensions/functions_cast.yaml +++ /dev/null @@ -1,11 +0,0 @@ -%YAML 1.2 ---- -scalar_functions: - - - name: cast - description: Cast one type to another. - impls: - - args: - - value: any1 - - type: output - return: output