aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp')
-rw-r--r--eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp b/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp
index 99c80ebacc2..03b40ad4b5f 100644
--- a/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp
+++ b/eval/src/tests/instruction/mixed_simple_join_function/mixed_simple_join_function_test.cpp
@@ -173,17 +173,6 @@ struct LhsRhs {
}
};
-vespalib::string adjust_param(const vespalib::string &str, bool mut_cells, bool is_rhs) {
- vespalib::string result = str;
- if (mut_cells) {
- result = "@" + result;
- }
- if (is_rhs) {
- result += "$2";
- }
- return result;
-}
-
CellType join_ct(CellType lct, CellType rct) {
if (lct == CellType::DOUBLE || rct == CellType::DOUBLE) {
return CellType::DOUBLE;