summaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
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) {