| 1 | #pragma once |
|---|---|
| 2 | #include <Common/config.h> |
| 3 | #include "config_core.h" |
| 4 | |
| 5 | namespace DB |
| 6 | { |
| 7 | class TableFunctionFactory; |
| 8 | void registerTableFunctionMerge(TableFunctionFactory & factory); |
| 9 | void registerTableFunctionRemote(TableFunctionFactory & factory); |
| 10 | void registerTableFunctionNumbers(TableFunctionFactory & factory); |
| 11 | void registerTableFunctionFile(TableFunctionFactory & factory); |
| 12 | void registerTableFunctionURL(TableFunctionFactory & factory); |
| 13 | void registerTableFunctionValues(TableFunctionFactory & factory); |
| 14 | void registerTableFunctionInput(TableFunctionFactory & factory); |
| 15 | |
| 16 | #if USE_AWS_S3 |
| 17 | void registerTableFunctionS3(TableFunctionFactory & factory); |
| 18 | #endif |
| 19 | |
| 20 | #if USE_HDFS |
| 21 | void registerTableFunctionHDFS(TableFunctionFactory & factory); |
| 22 | #endif |
| 23 | |
| 24 | void registerTableFunctionODBC(TableFunctionFactory & factory); |
| 25 | void registerTableFunctionJDBC(TableFunctionFactory & factory); |
| 26 | |
| 27 | #if USE_MYSQL |
| 28 | void registerTableFunctionMySQL(TableFunctionFactory & factory); |
| 29 | #endif |
| 30 | |
| 31 | |
| 32 | void registerTableFunctions(); |
| 33 | |
| 34 | } |
| 35 |