@thi.ng/column-store 0.1.0 → 0.1.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/typedarray.js +1 -1
- package/package.json +6 -6
package/columns/typedarray.js
CHANGED
|
@@ -41,7 +41,7 @@ class TypedArrayColumn extends AColumn {
|
|
|
41
41
|
super.updateBitmap(this.values.subarray(0, this.table.length));
|
|
42
42
|
}
|
|
43
43
|
validate(value) {
|
|
44
|
-
return isNumber(value) &&
|
|
44
|
+
return isNumber(value) && value >= this.limit[0] && value <= this.limit[1] || value == null && this.spec.default != null;
|
|
45
45
|
}
|
|
46
46
|
setRow(i, value) {
|
|
47
47
|
value = this.ensureValue(value);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/column-store",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.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",
|
|
@@ -100,11 +100,11 @@
|
|
|
100
100
|
"./columns/array": {
|
|
101
101
|
"default": "./columns/array.js"
|
|
102
102
|
},
|
|
103
|
-
"./columns/
|
|
104
|
-
"default": "./columns/
|
|
103
|
+
"./columns/dict-array": {
|
|
104
|
+
"default": "./columns/dict-array.js"
|
|
105
105
|
},
|
|
106
|
-
"./columns/
|
|
107
|
-
"default": "./columns/
|
|
106
|
+
"./columns/dict": {
|
|
107
|
+
"default": "./columns/dict.js"
|
|
108
108
|
},
|
|
109
109
|
"./columns/plain": {
|
|
110
110
|
"default": "./columns/plain.js"
|
|
@@ -123,5 +123,5 @@
|
|
|
123
123
|
"status": "alpha",
|
|
124
124
|
"year": 2025
|
|
125
125
|
},
|
|
126
|
-
"gitHead": "
|
|
126
|
+
"gitHead": "28440e6d826cce964928f4c2ffe1f0e3e2e25ab0\n"
|
|
127
127
|
}
|