summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp')
-rw-r--r--searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp b/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
index 2ae28936476..c6876e95dc4 100644
--- a/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
+++ b/searchcore/src/tests/proton/documentdb/documentdbconfigscout/documentdbconfigscout_test.cpp
@@ -43,6 +43,9 @@ assertDefaultAttribute(const AttributesConfig::Attribute &attribute,
if (!EXPECT_FALSE(attribute.huge)) {
return false;
}
+ if (!EXPECT_FALSE(attribute.paged)) {
+ return false;
+ }
if (!EXPECT_FALSE(attribute.enablebitvectors)) {
return false;
}
@@ -66,6 +69,9 @@ assertFastSearchAttribute(const AttributesConfig::Attribute &attribute,
if (!EXPECT_FALSE(attribute.huge)) {
return false;
}
+ if (!EXPECT_FALSE(attribute.paged)) {
+ return false;
+ }
if (!EXPECT_FALSE(attribute.enablebitvectors)) {
return false;
}
@@ -89,6 +95,9 @@ assertFastSearchAndMoreAttribute(const AttributesConfig::Attribute &attribute,
if (!EXPECT_TRUE(attribute.huge)) {
return false;
}
+ if (!EXPECT_TRUE(attribute.paged)) {
+ return false;
+ }
if (!EXPECT_TRUE(attribute.enablebitvectors)) {
return false;
}
@@ -233,6 +242,7 @@ setupFastSearchAndMoreAttribute(const vespalib::string name)
attribute.name = name;
attribute.fastsearch = true;
attribute.huge = true;
+ attribute.paged = true;
attribute.enablebitvectors = true;
attribute.enableonlybitvector = true;
return attribute;