| 51 | } |
| 52 | |
| 53 | void TableFunctionURL::parseArguments(const ASTPtr & ast, ContextPtr context) |
| 54 | { |
| 55 | /// Clone ast function, because we can modify it's arguments like removing headers. |
| 56 | ITableFunctionFileLike::parseArguments(ast->clone(), context); |
| 57 | } |
| 58 | |
| 59 | void TableFunctionURL::parseArgumentsImpl(ASTs & args, const ContextPtr & context) |
| 60 | { |
no test coverage detected