inital support for parallel load

This commit is contained in:
vaclavt
2022-01-15 14:12:15 +01:00
parent 51d888c680
commit ee24964057
5 changed files with 166 additions and 14 deletions

View File

@@ -26,7 +26,7 @@ namespace usql {
public:
explicit CsvReader(bool skip_hdr = true, char field_sep = ',', char quote_ch = '"', char line_sep = '\r', char line_sep2 = '\n');
size_t parseCSVString(const std::string &csvSource, std::vector<ColDefNode> &cols_def, Table& table);
size_t parseCSVString(const std::string csvSource, std::vector<ColDefNode> &cols_def, Table& table);
size_t parseCSVFile(const std::string &filename, std::vector<ColDefNode> &cols_def, Table& table);