summaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/FunctionsStringSearchToString.h
diff options
context:
space:
mode:
authorvitalyisaev <[email protected]>2023-11-14 09:58:56 +0300
committervitalyisaev <[email protected]>2023-11-14 10:20:20 +0300
commitc2b2dfd9827a400a8495e172a56343462e3ceb82 (patch)
treecd4e4f597d01bede4c82dffeb2d780d0a9046bd0 /contrib/clickhouse/src/Functions/FunctionsStringSearchToString.h
parentd4ae8f119e67808cb0cf776ba6e0cf95296f2df7 (diff)
YQ Connector: move tests from yql to ydb (OSS)
Перенос папки с тестами на Коннектор из папки yql в папку ydb (синхронизируется с github).
Diffstat (limited to 'contrib/clickhouse/src/Functions/FunctionsStringSearchToString.h')
-rw-r--r--contrib/clickhouse/src/Functions/FunctionsStringSearchToString.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/contrib/clickhouse/src/Functions/FunctionsStringSearchToString.h b/contrib/clickhouse/src/Functions/FunctionsStringSearchToString.h
new file mode 100644
index 00000000000..978a84de472
--- /dev/null
+++ b/contrib/clickhouse/src/Functions/FunctionsStringSearchToString.h
@@ -0,0 +1,88 @@
+#pragma once
+
+#include <Columns/ColumnArray.h>
+#include <Columns/ColumnConst.h>
+#include <Columns/ColumnString.h>
+#include <Columns/ColumnFixedString.h>
+#include <Columns/ColumnVector.h>
+#include <DataTypes/DataTypeArray.h>
+#include <DataTypes/DataTypeString.h>
+#include <DataTypes/DataTypesNumber.h>
+#include <Functions/FunctionHelpers.h>
+#include <Functions/IFunction.h>
+#include <IO/WriteHelpers.h>
+#include <Interpreters/Context.h>
+#include <base/StringRef.h>
+
+
+namespace DB
+{
+/** Applies regexp re2 and extracts:
+ * - the first subpattern, if the regexp has a subpattern;
+ * - the zero subpattern (the match part, otherwise);
+ * - if not match - an empty string.
+ * extract(haystack, pattern)
+ */
+
+namespace ErrorCodes
+{
+ extern const int ILLEGAL_TYPE_OF_ARGUMENT;
+ extern const int ILLEGAL_COLUMN;
+}
+
+
+template <typename Impl, typename Name>
+class FunctionsStringSearchToString : public IFunction
+{
+public:
+ static constexpr auto name = Name::name;
+ static FunctionPtr create(ContextPtr) { return std::make_shared<FunctionsStringSearchToString>(); }
+
+ String getName() const override { return name; }
+
+ size_t getNumberOfArguments() const override { return 2; }
+
+ bool useDefaultImplementationForConstants() const override { return true; }
+ ColumnNumbers getArgumentsThatAreAlwaysConstant() const override { return {1}; }
+
+ bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return true; }
+
+ DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
+ {
+ if (!isString(arguments[0]))
+ throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Illegal type {} of argument of function {}",
+ arguments[0]->getName(), getName());
+
+ if (!isString(arguments[1]))
+ throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Illegal type {} of argument of function {}",
+ arguments[1]->getName(), getName());
+
+ return std::make_shared<DataTypeString>();
+ }
+
+ ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t /*input_rows_count*/) const override
+ {
+ const ColumnPtr column = arguments[0].column;
+ const ColumnPtr column_needle = arguments[1].column;
+
+ const ColumnConst * col_needle = typeid_cast<const ColumnConst *>(&*column_needle);
+ if (!col_needle)
+ throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Second argument of function {} must be constant string", getName());
+
+ if (const ColumnString * col = checkAndGetColumn<ColumnString>(column.get()))
+ {
+ auto col_res = ColumnString::create();
+
+ ColumnString::Chars & vec_res = col_res->getChars();
+ ColumnString::Offsets & offsets_res = col_res->getOffsets();
+ Impl::vector(col->getChars(), col->getOffsets(), col_needle->getValue<String>(), vec_res, offsets_res);
+
+ return col_res;
+ }
+ else
+ throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Illegal column {} of argument of function {}",
+ arguments[0].column->getName(), getName());
+ }
+};
+
+}