summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/searchcommon
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-06-03 11:16:07 +0000
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:28 +0200
commitbac717c8785376988f866ea1f819d4d287382a26 (patch)
tree2906a9a8f6467daba6ff3d1272c5e8bd6096f26d /searchlib/src/tests/searchcommon
parentff4a41bcdb1b8f2bbc009203a7c7088a7e7e5dca (diff)
Remove 'attribute: huge' from config def file and C++ code.
Diffstat (limited to 'searchlib/src/tests/searchcommon')
-rw-r--r--searchlib/src/tests/searchcommon/attribute/config/attribute_config_test.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/searchlib/src/tests/searchcommon/attribute/config/attribute_config_test.cpp b/searchlib/src/tests/searchcommon/attribute/config/attribute_config_test.cpp
index f9e77376b25..2183138811b 100644
--- a/searchlib/src/tests/searchcommon/attribute/config/attribute_config_test.cpp
+++ b/searchlib/src/tests/searchcommon/attribute/config/attribute_config_test.cpp
@@ -20,9 +20,8 @@ struct Fixture
Fixture(BasicType bt,
CollectionType ct = CollectionType::SINGLE,
- bool fastSearch_ = false,
- bool huge_ = false)
- : _config(bt, ct, fastSearch_, huge_)
+ bool fastSearch_ = false)
+ : _config(bt, ct, fastSearch_)
{ }
};
@@ -32,7 +31,6 @@ TEST_F("test default attribute config", Fixture)
EXPECT_EQUAL(CollectionType::Type::SINGLE,
f._config.collectionType().type());
EXPECT_TRUE(!f._config.fastSearch());
- EXPECT_TRUE(!f._config.huge());
EXPECT_TRUE(!f._config.getEnableBitVectors());
EXPECT_TRUE(!f._config.getEnableOnlyBitVector());
EXPECT_TRUE(!f._config.getIsFilter());
@@ -48,7 +46,6 @@ TEST_F("test integer weightedset attribute config",
EXPECT_EQUAL(CollectionType::Type::WSET,
f._config.collectionType().type());
EXPECT_TRUE(!f._config.fastSearch());
- EXPECT_TRUE(!f._config.huge());
EXPECT_TRUE(!f._config.getEnableBitVectors());
EXPECT_TRUE(!f._config.getEnableOnlyBitVector());
EXPECT_TRUE(!f._config.getIsFilter());