liuminghui233 commented on code in PR #11671:
URL: https://github.com/apache/iotdb/pull/11671#discussion_r1427534869
##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/SeriesScanUtil.java:
##########
@@ -1097,12 +1139,7 @@ private void unpackSeqTsFileResource() throws
IOException {
private void unpackUnseqTsFileResource() throws IOException {
ITimeSeriesMetadata timeseriesMetadata =
- loadTimeSeriesMetadata(
- orderUtils.getNextUnseqFileResource(true),
- seriesPath,
- context,
- getGlobalTimeFilter(),
- scanOptions.getAllSensors());
+ loadTimeSeriesMetadata(orderUtils.getNextUnseqFileResource(true),
seriesPath, context);
if (timeseriesMetadata != null) {
timeseriesMetadata.setModified(true);
Review Comment:
fixed
##########
iotdb-core/tsfile/src/main/java/org/apache/iotdb/tsfile/read/common/block/TsBlock.java:
##########
@@ -223,6 +223,18 @@ public Column[] getColumns(int[] columnIndexes) {
return columns;
}
+ public Object[] getRowValues(int rowIndex) {
+ Object[] rowValues = new Object[valueColumns.length];
+ for (int i = 0; i < valueColumns.length; i++) {
+ if (valueColumns[i].isNull(rowIndex)) {
+ rowValues[i] = null;
+ } else {
+ rowValues[i] = valueColumns[i].getObject(rowIndex);
+ }
+ }
+ return rowValues;
+ }
+
Review Comment:
removed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]