summaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/TableFunctions/TableFunctionExecutable.h
diff options
context:
space:
mode:
authorAlexSm <[email protected]>2024-01-04 15:09:05 +0100
committerGitHub <[email protected]>2024-01-04 15:09:05 +0100
commitdab291146f6cd7d35684e3a1150e5bb1c412982c (patch)
tree36ef35f6cacb6432845a4a33f940c95871036b32 /contrib/clickhouse/src/TableFunctions/TableFunctionExecutable.h
parent63660ad5e7512029fd0218e7a636580695a24e1f (diff)
Library import 5, delete go dependencies (#832)
* Library import 5, delete go dependencies * Fix yt client
Diffstat (limited to 'contrib/clickhouse/src/TableFunctions/TableFunctionExecutable.h')
-rw-r--r--contrib/clickhouse/src/TableFunctions/TableFunctionExecutable.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/contrib/clickhouse/src/TableFunctions/TableFunctionExecutable.h b/contrib/clickhouse/src/TableFunctions/TableFunctionExecutable.h
deleted file mode 100644
index aa595312fe4..00000000000
--- a/contrib/clickhouse/src/TableFunctions/TableFunctionExecutable.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#pragma once
-
-#include <TableFunctions/ITableFunction.h>
-
-namespace DB
-{
-
-class Context;
-class ASTSetQuery;
-
-/* executable(script_name_optional_arguments, format, structure, input_query) - creates a temporary storage from executable file
- *
- *
- * The file must be in the clickhouse data directory.
- * The relative path begins with the clickhouse data directory.
- */
-class TableFunctionExecutable : public ITableFunction
-{
-public:
- static constexpr auto name = "executable";
-
- std::string getName() const override { return name; }
-
- bool hasStaticStructure() const override { return true; }
-
-private:
- StoragePtr executeImpl(const ASTPtr & ast_function, ContextPtr context, const std::string & table_name, ColumnsDescription cached_columns, bool is_insert_query) const override;
-
- const char * getStorageTypeName() const override { return "Executable"; }
-
- ColumnsDescription getActualTableStructure(ContextPtr context, bool is_insert_query) const override;
-
- std::vector<size_t> skipAnalysisForArguments(const QueryTreeNodePtr & query_node_table_function, ContextPtr context) const override;
-
- void parseArguments(const ASTPtr & ast_function, ContextPtr context) override;
-
- String script_name;
- std::vector<String> arguments;
- String format;
- String structure;
- std::vector<ASTPtr> input_queries;
- ASTPtr settings_query = nullptr;
-};
-}