wsjz commented on code in PR #24124: URL: https://github.com/apache/doris/pull/24124#discussion_r1320836363
########## fe/be-java-extensions/max-compute-scanner/src/main/java/org/apache/doris/maxcompute/MaxComputeColumnValue.java: ########## @@ -83,8 +84,8 @@ private void skippedIfNull() { @Override public boolean getBoolean() { skippedIfNull(); - TinyIntVector tinyIntCol = (TinyIntVector) column; - return tinyIntCol.get(idx++) > 0; + BitVector bitCol = (BitVector) column; Review Comment: bool type is bind to bit vector tinyint type bind to tinyint vector, it can work now -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org