@thi.ng/column-store 0.6.0 → 0.6.1
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/columns/acolumn.js +2 -2
- package/package.json +2 -2
package/columns/acolumn.js
CHANGED
|
@@ -56,11 +56,11 @@ class AColumn {
|
|
|
56
56
|
if (!bitmap) return;
|
|
57
57
|
bitmap.clear();
|
|
58
58
|
for (let i = 0, n = this.table.length; i < n; i++) {
|
|
59
|
-
const value = this.
|
|
59
|
+
const value = this.getRowKey(i);
|
|
60
60
|
if (value == null) continue;
|
|
61
61
|
if (isArray) {
|
|
62
62
|
for (let x of value) bitmap.setBit(x, i);
|
|
63
|
-
} else bitmap.setBit(
|
|
63
|
+
} else bitmap.setBit(value, i);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
ensureValue(val) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/column-store",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "In-memory column store database with customizable column types, extensible query engine, bitfield indexing for query acceleration, JSON serialization with optional RLE compression",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -126,5 +126,5 @@
|
|
|
126
126
|
"status": "alpha",
|
|
127
127
|
"year": 2025
|
|
128
128
|
},
|
|
129
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "c048d3c6149769309feff3fa943dcd3767b5c6b2\n"
|
|
130
130
|
}
|