summaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
authorArne H Juul <arnej27959@users.noreply.github.com>2021-01-15 13:21:40 +0100
committerGitHub <noreply@github.com>2021-01-15 13:21:40 +0100
commit1463162fc4b86877df3314c82e76f03a769d2532 (patch)
tree1abccd7b3827a3086c375c33204299a40ddb4984 /eval
parentbe40c3055b92acbb79370de175b0a9c793ca858f (diff)
parenta95bcba4b4b6ccb71d74b17cc1555dcd9db0d89d (diff)
Merge pull request #16061 from vespa-engine/havardpe/also-test-with-empty-index
also test index forwarding of empty index
Diffstat (limited to 'eval')
-rw-r--r--eval/src/tests/instruction/generic_join/generic_join_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/eval/src/tests/instruction/generic_join/generic_join_test.cpp b/eval/src/tests/instruction/generic_join/generic_join_test.cpp
index 7083f4d7eb7..8eca3cad763 100644
--- a/eval/src/tests/instruction/generic_join/generic_join_test.cpp
+++ b/eval/src/tests/instruction/generic_join/generic_join_test.cpp
@@ -42,7 +42,8 @@ std::vector<Layout> join_layouts = {
{x({"a","b","c"}),y(5)}, float_cells({y(5),z({"i","j","k","l"})}),
float_cells({x({"a","b","c"}),y(5)}), float_cells({y(5),z({"i","j","k","l"})}),
{x({"a","b","c"}),y(5)}, float_cells({y(5)}),
- {y(5)}, float_cells({x({"a","b","c"}),y(5)})
+ {y(5)}, float_cells({x({"a","b","c"}),y(5)}),
+ {x({}),y(5)}, float_cells({y(5)})
};
bool join_address(const TensorSpec::Address &a, const TensorSpec::Address &b, TensorSpec::Address &addr) {