duckdb 0.6.1-dev76.0 → 0.6.1-dev83.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 +2 -1
- package/src/duckdb.hpp +767 -767
- package/src/parquet-amalgamation.cpp +29141 -29141
package/package.json
CHANGED
package/src/duckdb.cpp
CHANGED
|
@@ -96979,7 +96979,8 @@ struct Interpolator {
|
|
|
96979
96979
|
template <>
|
|
96980
96980
|
struct Interpolator<true> {
|
|
96981
96981
|
Interpolator(const double q, const idx_t n_p)
|
|
96982
|
-
: n(n_p), RN((double)(n_p
|
|
96982
|
+
: n(n_p), RN((double)(n_p * q)), FRN(MaxValue<idx_t>(1, n_p - floor(n_p - RN)) - 1), CRN(FRN), begin(0),
|
|
96983
|
+
end(n_p) {
|
|
96983
96984
|
}
|
|
96984
96985
|
|
|
96985
96986
|
template <class INPUT_TYPE, class TARGET_TYPE, typename ACCESSOR = QuantileDirect<INPUT_TYPE>>
|