duckdb 0.6.2-dev2057.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/lib/duckdb.js
CHANGED
|
@@ -334,7 +334,6 @@ Connection.prototype.register_udf = function (name, return_type, fun) {
|
|
|
334
334
|
desc.ret.validity[i] = res === undefined || res === null ? 0 : 1;
|
|
335
335
|
}
|
|
336
336
|
} catch (error) { // work around recently fixed napi bug https://github.com/nodejs/node-addon-api/issues/912
|
|
337
|
-
console.log(desc.ret);
|
|
338
337
|
msg = error;
|
|
339
338
|
if (typeof error == 'object' && 'message' in error) {
|
|
340
339
|
msg = error.message
|
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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-
|
|
2
|
+
#define DUCKDB_VERSION "0.6.2-dev2063"
|
|
3
3
|
#endif
|
|
4
4
|
#ifndef DUCKDB_SOURCE_ID
|
|
5
|
-
#define DUCKDB_SOURCE_ID "
|
|
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"
|