mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Fix index type name in the error message
This commit is contained in:
parent
6aa2fe525e
commit
e0896ab8be
@ -748,7 +748,7 @@ MergeTreeIndexGranulePtr MergeTreeIndexFullText::createIndexGranule() const
|
|||||||
/// have an old index.
|
/// have an old index.
|
||||||
/// TODO: remove this at the end of 2024.
|
/// TODO: remove this at the end of 2024.
|
||||||
if (index.type == INVERTED_INDEX_NAME)
|
if (index.type == INVERTED_INDEX_NAME)
|
||||||
throw Exception(ErrorCodes::ILLEGAL_INDEX, "Indexes of type 'inverted' are no longer supported. Please drop and recreate the index as type 'full-text'");
|
throw Exception(ErrorCodes::ILLEGAL_INDEX, "Indexes of type 'inverted' are no longer supported. Please drop and recreate the index as type 'full_text'");
|
||||||
/// ------
|
/// ------
|
||||||
|
|
||||||
return std::make_shared<MergeTreeIndexGranuleFullText>(index.name, index.column_names.size(), params);
|
return std::make_shared<MergeTreeIndexGranuleFullText>(index.name, index.column_names.size(), params);
|
||||||
|
Loading…
Reference in New Issue
Block a user