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
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]