summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/index/fusionrunner_test.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-11-27 22:59:00 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2016-12-12 02:55:39 +0100
commit81555e53ed169222b6e9ee28309c383e744abd94 (patch)
tree1f104cca2e936b709cba2b12a12d6003419736af /searchcore/src/tests/proton/index/fusionrunner_test.cpp
parent7559362bb7aa05f2feb6984669c064bdf0d6815c (diff)
Use schema::DataType
Diffstat (limited to 'searchcore/src/tests/proton/index/fusionrunner_test.cpp')
-rw-r--r--searchcore/src/tests/proton/index/fusionrunner_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/index/fusionrunner_test.cpp b/searchcore/src/tests/proton/index/fusionrunner_test.cpp
index dd2bcee97b2..5b0420bc922 100644
--- a/searchcore/src/tests/proton/index/fusionrunner_test.cpp
+++ b/searchcore/src/tests/proton/index/fusionrunner_test.cpp
@@ -125,7 +125,7 @@ const uint32_t disk_id[] = { 1, 2, 21, 42 };
Schema getSchema() {
Schema schema;
schema.addIndexField(
- Schema::IndexField(field_name, Schema::STRING));
+ Schema::IndexField(field_name, search::index::schema::STRING));
return schema;
}