| 162 | } |
| 163 | |
| 164 | void SniffCSVDialectDriver::reset() { |
| 165 | columnCounts = std::vector<idx_t>(columnCounts.size(), 0); |
| 166 | currentColumnCount = 0; |
| 167 | error = false; |
| 168 | resultPosition = 0; |
| 169 | everQuoted = false; |
| 170 | everEscaped = false; |
| 171 | } |
| 172 | |
| 173 | SniffCSVNameAndTypeDriver::SniffCSVNameAndTypeDriver(SerialCSVReader* reader, |
| 174 | const function::ExtraScanTableFuncBindInput* bindInput) |
no test coverage detected