Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
checksums.txt | 2024-03-12 | 1.4 kB | |
sq_0.48.3_linux_amd64.deb | 2024-03-12 | 11.8 MB | |
sq_0.48.3_linux_amd64.pkg.tar.zst | 2024-03-12 | 11.6 MB | |
sq_0.48.3_linux_amd64.rpm | 2024-03-12 | 12.2 MB | |
sq_0.48.3_linux_amd64.termux.deb | 2024-03-12 | 11.8 MB | |
sq_0.48.3_linux_arm64.deb | 2024-03-12 | 10.9 MB | |
sq_0.48.3_linux_arm64.pkg.tar.zst | 2024-03-12 | 10.6 MB | |
sq_0.48.3_linux_arm64.termux.deb | 2024-03-12 | 10.9 MB | |
sq-0.48.3-amd64-amd64.zip | 2024-03-12 | 11.4 MB | |
sq_0.48.3_linux_amd64.apk | 2024-03-12 | 12.2 MB | |
sq_0.48.3_linux_arm64.apk | 2024-03-12 | 11.2 MB | |
sq_0.48.3_linux_arm64.rpm | 2024-03-12 | 11.2 MB | |
sq-0.48.3-amd64-amd64.tar.gz | 2024-03-12 | 11.7 MB | |
sq-0.48.3-arm64-arm64.tar.gz | 2024-03-12 | 10.9 MB | |
sq-0.48.3-macos-amd64.tar.gz | 2024-03-12 | 11.3 MB | |
sq-0.48.3-macos-arm64.tar.gz | 2024-03-12 | 10.8 MB | |
README.md | 2024-03-12 | 860 Bytes | |
v0.48.3 source code.tar.gz | 2024-03-12 | 62.5 MB | |
v0.48.3 source code.zip | 2024-03-12 | 62.9 MB | |
Totals: 19 Items | 295.9 MB | 0 |
Small bugfix release.
Fixed
- #415: The JSON ingester could fail due to a bug when a JSON blob landed on the edge of a buffer.
- The JSON ingester wasn't able to handle the case where a post-sampling JSON field had a different kind from the kind determined by the sampling process. For example, let's say the sample size was 1000, and the field
zip
was determined to be of kindint
, because values 0-1000 were all parseable as integers. But then the 1001st value wasBX123
, which obviously is not an integer.sq
will now see the non-integer value, and alter the ingest DB schema to a compatible kind, e.g.text
. This flexibility is powerful, but it does come at the cost of slower ingest speed. But that's a topic for another release.