duckdb 0.6.2-dev2059.0 → 0.6.2-dev2063.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.6.2-dev2059.0",
5
+ "version": "0.6.2-dev2063.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
@@ -444,13 +444,7 @@ void BufferedCSVReader::DetectDialect(const vector<LogicalType> &requested_types
444
444
 
445
445
  JumpToBeginning(original_options.skip_rows);
446
446
  sniffed_column_counts.clear();
447
- idx_t num_buffers = 0;
448
- bool parsing_success = true;
449
- while (num_buffers < options.sample_chunks && !end_of_file_reached) {
450
- parsing_success = parsing_success && TryParseCSV(ParserMode::SNIFFING_DIALECT);
451
- num_buffers++;
452
- }
453
- if (!parsing_success) {
447
+ if (!TryParseCSV(ParserMode::SNIFFING_DIALECT)) {
454
448
  continue;
455
449
  }
456
450
 
@@ -1,8 +1,8 @@
1
1
  #ifndef DUCKDB_VERSION
2
- #define DUCKDB_VERSION "0.6.2-dev2059"
2
+ #define DUCKDB_VERSION "0.6.2-dev2063"
3
3
  #endif
4
4
  #ifndef DUCKDB_SOURCE_ID
5
- #define DUCKDB_SOURCE_ID "67dab2a30b"
5
+ #define DUCKDB_SOURCE_ID "dba3b77df7"
6
6
  #endif
7
7
  #include "duckdb/function/table/system_functions.hpp"
8
8
  #include "duckdb/main/database.hpp"