| 112 | } |
| 113 | |
| 114 | bool handleFileViaFunction(main::ClientContext* context, std::vector<std::string> filePaths) { |
| 115 | bool handleFileViaFunction = false; |
| 116 | if (VirtualFileSystem::GetUnsafe(*context)->fileOrPathExists(filePaths[0], context)) { |
| 117 | handleFileViaFunction = |
| 118 | VirtualFileSystem::GetUnsafe(*context)->handleFileViaFunction(filePaths[0]); |
| 119 | } |
| 120 | return handleFileViaFunction; |
| 121 | } |
| 122 | |
| 123 | std::unique_ptr<BoundBaseScanSource> Binder::bindFileScanSource(const BaseScanSource& scanSource, |
| 124 | const options_t& options, const std::vector<std::string>& columnNames, |
no test coverage detected