Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@ private void resizePageDataMemoryIfNeeded(final long estimatedMemoryUsageInBytes
}
}

@SuppressWarnings("java:S6541") // Keep aligned and scalar type dispatch together.
private boolean putValueToColumns(final BatchData data, final Tablet tablet, final int rowIndex) {
boolean isNeedFillTime = false;
if (data.getDataType() == TSDataType.VECTOR) {
Expand Down Expand Up @@ -614,6 +615,7 @@ private boolean putValueToColumns(final BatchData data, final Tablet tablet, fin
return isNeedFillTime;
}

@SuppressWarnings("java:S6541") // Keep marker transitions in one parser state machine.
private void moveToNextChunkReader()
throws IOException, IllegalStateException, IllegalPathException {
ChunkHeader chunkHeader;
Expand Down
Loading