We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93c7e3b commit a1f77f9Copy full SHA for a1f77f9
modules/rntuple.mjs
@@ -770,8 +770,10 @@ class RNTupleDescriptorBuilder {
770
val = String.fromCharCode(reader.readS8());
771
break;
772
case ENTupleColumnType.kIndex32:
773
+ val = reader.readS32();
774
+ break;
775
case ENTupleColumnType.kIndex64:
- val = processedBlob[i];
776
+ val = reader.readS64();
777
778
default:
779
throw new Error(`Unsupported column type: ${columnDescriptor.coltype}`);
0 commit comments