dolphindb 3.0.125 → 3.0.127
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/browser.js +2 -2
- package/browser.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/test.js.map +1 -1
package/browser.js
CHANGED
|
@@ -558,7 +558,7 @@ export class DdbObj {
|
|
|
558
558
|
type,
|
|
559
559
|
length: i_items_start + len_items,
|
|
560
560
|
cols: 1,
|
|
561
|
-
rows,
|
|
561
|
+
rows: type === DdbType.iotany ? value.length : rows,
|
|
562
562
|
value,
|
|
563
563
|
...type === DdbType.iotany ? { buffer: buf } : {}
|
|
564
564
|
});
|
|
@@ -834,7 +834,7 @@ export class DdbObj {
|
|
|
834
834
|
for (let i = 1; i < length; i++) {
|
|
835
835
|
const sub_vector = anys[i];
|
|
836
836
|
const sub_type = sub_vector.type;
|
|
837
|
-
sub_vecs.set(sub_type,
|
|
837
|
+
sub_vecs.set(sub_type, sub_vector.data());
|
|
838
838
|
}
|
|
839
839
|
return [
|
|
840
840
|
len,
|