aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/apps
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-04-20 11:33:42 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-04-20 11:33:42 +0000
commit0c4c061e0a034f614eee8ea1697eea413d11e854 (patch)
tree48cdd8baaeea64d765aa88622140a78f031c564e /searchcore/src/apps
parent4077f420c5fb5f6d2dcbd42bbd6bc2bf6c40094b (diff)
Rename AttributeSpecsBuilder to AttributeAspectDelayer.
Diffstat (limited to 'searchcore/src/apps')
-rw-r--r--searchcore/src/apps/tests/persistenceconformance_test.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/searchcore/src/apps/tests/persistenceconformance_test.cpp b/searchcore/src/apps/tests/persistenceconformance_test.cpp
index 18a51115089..4f08d72f2c9 100644
--- a/searchcore/src/apps/tests/persistenceconformance_test.cpp
+++ b/searchcore/src/apps/tests/persistenceconformance_test.cpp
@@ -27,7 +27,7 @@ LOG_SETUP("persistenceconformance_test");
#include <tests/proton/common/dummydbowner.h>
#include <vespa/vespalib/io/fileutil.h>
#include <vespa/searchcore/proton/common/hw_info.h>
-#include <vespa/searchcore/proton/attribute/attribute_specs_builder.h>
+#include <vespa/searchcore/proton/attribute/attribute_aspect_delayer.h>
using namespace config;
@@ -113,17 +113,17 @@ public:
SchemaBuilder::build(*indexschema, *schema);
SchemaBuilder::build(*attributes, *schema);
SchemaBuilder::build(*summary, *schema);
- AttributeSpecsBuilder attributeSpecsBuilder;
- attributeSpecsBuilder.setup(*attributes, SummarymapConfig());
+ AttributeAspectDelayer attributeAspectDelayer;
+ attributeAspectDelayer.setup(*attributes, SummarymapConfig());
return DocumentDBConfig::SP(new DocumentDBConfig(
1,
std::make_shared<RankProfilesConfig>(),
std::make_shared<matching::RankingConstants>(),
indexschema,
- attributeSpecsBuilder.getAttributesConfig(),
- attributeSpecsBuilder.getAttributeSpecs(),
+ attributeAspectDelayer.getAttributesConfig(),
+ attributeAspectDelayer.getAttributeSpecs(),
summary,
- attributeSpecsBuilder.getSummarymapConfig(),
+ attributeAspectDelayer.getSummarymapConfig(),
std::make_shared<JuniperrcConfig>(),
_typeCfg,
_repo,