summaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2021-03-18 11:18:57 +0000
committerArne Juul <arnej@verizonmedia.com>2021-03-23 16:57:42 +0000
commitea3383e5ebecf584f6f4406c4ec5568f5dd024aa (patch)
treecf0e826c99e92af447e8d24c49bc8f24544eb626 /eval
parente60e7dd7ca8df92da82ae92e4e17b31da36b221a (diff)
test unstable cell types for JoinWithNumberFunction
Diffstat (limited to 'eval')
-rw-r--r--eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp b/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp
index a2f18d7f7f7..d152d4531c8 100644
--- a/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp
+++ b/eval/src/tests/instruction/join_with_number/join_with_number_function_test.cpp
@@ -51,6 +51,8 @@ void verify_optimized(const vespalib::string &expr, Primary primary, bool inplac
const auto stable_types = CellTypeSpace({CellType::FLOAT, CellType::DOUBLE}, 2);
FunInfo stable_details{primary, inplace};
TEST_DO(EvalFixture::verify<FunInfo>(expr, {stable_details}, stable_types));
+ const auto unstable_types = CellTypeSpace({CellType::BFLOAT16, CellType::INT8}, 2);
+ TEST_DO(EvalFixture::verify<FunInfo>(expr, {}, unstable_types));
}
void verify_not_optimized(const vespalib::string &expr) {