mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 18:12:02 +00:00
Moved Lemmatizers & SynonymExtensions to Interpreters
This commit is contained in:
parent
076d666c8d
commit
014dbcbf49
@ -460,6 +460,10 @@ endif ()
|
||||
|
||||
dbms_target_link_libraries(PRIVATE _boost_context)
|
||||
|
||||
dbms_target_link_libraries (PUBLIC stemmer)
|
||||
dbms_target_link_libraries (PUBLIC wnb)
|
||||
dbms_target_link_libraries (PUBLIC lemmagen)
|
||||
|
||||
include ("${ClickHouse_SOURCE_DIR}/cmake/add_check.cmake")
|
||||
|
||||
if (ENABLE_TESTS AND USE_GTEST)
|
||||
|
@ -122,7 +122,3 @@ endif()
|
||||
|
||||
# Signed integer overflow on user-provided data inside boost::geometry - ignore.
|
||||
set_source_files_properties("pointInPolygon.cpp" PROPERTIES COMPILE_FLAGS -fno-sanitize=signed-integer-overflow)
|
||||
|
||||
target_link_libraries(clickhouse_functions PRIVATE stemmer)
|
||||
target_link_libraries(clickhouse_functions PRIVATE wnb)
|
||||
target_link_libraries(clickhouse_functions PRIVATE lemmagen)
|
||||
|
@ -3,9 +3,8 @@
|
||||
#include <Functions/FunctionFactory.h>
|
||||
#include <Functions/FunctionHelpers.h>
|
||||
#include <Functions/IFunction.h>
|
||||
#include <Functions/Lemmatizers.cpp>
|
||||
#include <Interpreters/Context.h>
|
||||
|
||||
#include <Interpreters/Lemmatizers.cpp>
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
@ -6,8 +6,8 @@
|
||||
#include <Functions/FunctionFactory.h>
|
||||
#include <Functions/FunctionHelpers.h>
|
||||
#include <Functions/IFunction.h>
|
||||
#include <Functions/SynonymsExtensions.h>
|
||||
#include <Interpreters/Context.h>
|
||||
#include <Interpreters/SynonymsExtensions.h>
|
||||
|
||||
#include <string_view>
|
||||
|
||||
|
@ -76,8 +76,8 @@
|
||||
#include <Interpreters/DatabaseCatalog.h>
|
||||
#include <Storages/MergeTree/BackgroundJobsExecutor.h>
|
||||
#include <Storages/MergeTree/MergeTreeDataPartUUID.h>
|
||||
#include <Functions/SynonymsExtensions.h>
|
||||
#include <Functions/Lemmatizers.h>
|
||||
#include <Interpreters/SynonymsExtensions.h>
|
||||
#include <Interpreters/Lemmatizers.h>
|
||||
#include <filesystem>
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <Common/Exception.h>
|
||||
#include <Functions/Lemmatizers.h>
|
||||
#include <Interpreters/Lemmatizers.h>
|
||||
#include <RdrLemmatizer.h>
|
||||
|
||||
#include <vector>
|
@ -1,5 +1,5 @@
|
||||
#include <Common/Exception.h>
|
||||
#include <Functions/SynonymsExtensions.h>
|
||||
#include <Interpreters/SynonymsExtensions.h>
|
||||
|
||||
#include <fstream>
|
||||
#include <list>
|
Loading…
Reference in New Issue
Block a user