duckdb 0.3.5-dev46.0 → 0.3.5-dev505.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 +1 -1
- package/src/duckdb.cpp +28838 -22456
- package/src/duckdb.hpp +1142 -956
- package/src/parquet-amalgamation.cpp +11404 -11398
- package/test/prepare.test.js +2 -2
package/test/prepare.test.js
CHANGED
|
@@ -543,7 +543,7 @@ describe('prepare', function() {
|
|
|
543
543
|
});
|
|
544
544
|
it("should aggregate approx_count_distinct(flt)", function (done) {
|
|
545
545
|
db.all("SELECT approx_count_distinct(flt) as approx_count_distinct FROM foo", function (err, res) {
|
|
546
|
-
assert.ok(res[0].approx_count_distinct >=
|
|
546
|
+
assert.ok(res[0].approx_count_distinct >= 950);
|
|
547
547
|
done(err);
|
|
548
548
|
});
|
|
549
549
|
});
|
|
@@ -587,7 +587,7 @@ describe('prepare', function() {
|
|
|
587
587
|
});
|
|
588
588
|
it("should aggregate approx_count_distinct(num)", function (done) {
|
|
589
589
|
db.all("SELECT approx_count_distinct(num) as approx_count_distinct FROM foo", function (err, res) {
|
|
590
|
-
assert.ok(res[0].approx_count_distinct >=
|
|
590
|
+
assert.ok(res[0].approx_count_distinct >= 950);
|
|
591
591
|
done(err);
|
|
592
592
|
});
|
|
593
593
|
});
|