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 8e121b6 commit 64971b1Copy full SHA for 64971b1
fluss-lake/fluss-lake-lance/src/main/java/org/apache/fluss/lake/lance/tiering/LanceArrowWriter.java
@@ -38,7 +38,7 @@ public class LanceArrowWriter extends ArrowReader {
38
private final RowType rowType;
39
private final int batchSize;
40
41
- private volatile boolean finished;
+ private volatile boolean finished = false;
42
43
private final AtomicLong totalBytesRead = new AtomicLong();
44
private ArrowWriter arrowWriter = null;
@@ -74,8 +74,8 @@ void write(LogRecord row) {
74
}
75
76
void setFinished() {
77
- loadToken.release();
78
finished = true;
+ loadToken.release();
79
80
81
@Override
0 commit comments