aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-12-16 22:39:44 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2018-12-16 22:39:44 +0000
commit60d3c83657adbeeb6b3c072d9e3d0f017eeb7709 (patch)
tree92568499c259541e43e459b7a68c8af7f371d9f7 /searchlib
parentb435eb84efa3b47e43e4865637532938e26e1e3f (diff)
UINT1 -> BOOL
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/configconverter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/configconverter.cpp b/searchlib/src/vespa/searchlib/attribute/configconverter.cpp
index 5c1e0e09b62..963d7bf5ae9 100644
--- a/searchlib/src/vespa/searchlib/attribute/configconverter.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/configconverter.cpp
@@ -20,7 +20,7 @@ getDataTypeMap()
{
DataTypeMap map;
map[AttributesConfig::Attribute::STRING] = BasicType::STRING;
- map[AttributesConfig::Attribute::UINT1] = BasicType::UINT1;
+ map[AttributesConfig::Attribute::BOOL] = BasicType::UINT1;
map[AttributesConfig::Attribute::UINT2] = BasicType::UINT2;
map[AttributesConfig::Attribute::UINT4] = BasicType::UINT4;
map[AttributesConfig::Attribute::INT8] = BasicType::INT8;