aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/diskindex
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2022-10-13 12:34:35 +0200
committerTor Egge <Tor.Egge@online.no>2022-10-13 12:34:35 +0200
commit2b309b0a16f2867509040080face61cfae14f902 (patch)
tree917c78167aa7b0b053ee87571da872bacf9e2d7b /searchlib/src/tests/diskindex
parent55273728967bc6edea0185f062c93a3e61e6cf66 (diff)
Add field value builders to EmptyDocBuilder.
Diffstat (limited to 'searchlib/src/tests/diskindex')
-rw-r--r--searchlib/src/tests/diskindex/fusion/fusion_test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/searchlib/src/tests/diskindex/fusion/fusion_test.cpp b/searchlib/src/tests/diskindex/fusion/fusion_test.cpp
index 8feb7b7e287..b478c8f3ddd 100644
--- a/searchlib/src/tests/diskindex/fusion/fusion_test.cpp
+++ b/searchlib/src/tests/diskindex/fusion/fusion_test.cpp
@@ -125,11 +125,11 @@ make_doc10(EmptyDocBuilder &b)
StringFieldBuilder sfb(b);
doc->setValue("f0", sfb.tokenize("a b c d e f z").build());
doc->setValue("f1", sfb.tokenize("w x y z").build());
- ArrayFieldValue string_array(b.get_data_type("Array<String>"));
+ auto string_array = b.make_array("f2");
string_array.add(sfb.tokenize("ax ay z").build());
string_array.add(sfb.tokenize("ax").build());
doc->setValue("f2", string_array);
- WeightedSetFieldValue string_wset(b.get_data_type("WeightedSet<String>"));
+ auto string_wset = b.make_wset("f3");
string_wset.add(sfb.tokenize("wx z").build(), 4);
doc->setValue("f3", string_wset);
return doc;
@@ -356,7 +356,7 @@ FusionTest::requireThatFusionIsWorking(const vespalib::string &prefix, bool dire
doc = b.make_document("id:ns:searchdocument::11");
{
- WeightedSetFieldValue string_wset(b.get_data_type("WeightedSet<String>"));
+ auto string_wset = b.make_wset("f3");
string_wset.add(sfb.word("zz").build(), -27);
doc->setValue("f3", string_wset);
}
@@ -365,7 +365,7 @@ FusionTest::requireThatFusionIsWorking(const vespalib::string &prefix, bool dire
doc = b.make_document("id:ns:searchdocument::12");
{
- WeightedSetFieldValue string_wset(b.get_data_type("WeightedSet<String>"));
+ auto string_wset = b.make_wset("f3");
string_wset.add(sfb.word("zz0").build(), 0);
doc->setValue("f3", string_wset);
}