From bcc679b2acdf8c7b926fb86bbdd718b4b8860a5a Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Thu, 12 Oct 2023 19:12:26 -0400 Subject: [PATCH] FIX: exists() return type is int --- src/schema/meta/expression_tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/schema/meta/expression_tests.yaml b/src/schema/meta/expression_tests.yaml index 1fc59ac589..3df5a8610e 100644 --- a/src/schema/meta/expression_tests.yaml +++ b/src/schema/meta/expression_tests.yaml @@ -61,9 +61,9 @@ - expression: '"VolumeTiming" in null' result: false - expression: exists(null, "bids-uri") - result: false + result: 0 - expression: exists([], null) - result: false + result: 0 # General expressions - expression: 1 + 2