Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Jul 11, 2023
1 parent 7b238e3 commit b29d543
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
3 changes: 0 additions & 3 deletions be/src/vec/aggregate_functions/aggregate_function_java_udaf.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,6 @@ struct AggregateJavaUdafData {
// convert argument column data into java type
jobjectArray arr_obj = nullptr;
if (data_col->is_numeric() || data_col->is_column_decimal()) {
LOG(INFO) << arg_idx << " " << arg_column_nullable << " " << row_num_start << " "
<< row_num_end << " " << nullmap_address << " "
<< reinterpret_cast<int64_t>(data_col->get_raw_data().data) << " " << 0;
arr_obj = (jobjectArray)env->CallObjectMethod(
executor_obj, executor_convert_basic_argument_id, arg_idx,
arg_column_nullable, row_num_start, row_num_end, nullmap_address,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1025,8 +1025,7 @@ protected void updateOutputOffset(long offset) {
}

public Object[] convertBasicArg(boolean isUdf, int argIdx, boolean isNullable, int rowStart, int rowEnd,
long nullMapAddr,
long columnAddr, long strOffsetAddr) {
long nullMapAddr, long columnAddr, long strOffsetAddr) {
switch (argTypes[argIdx]) {
case BOOLEAN:
return UdfConvert.convertBooleanArg(isNullable, rowStart, rowEnd, nullMapAddr, columnAddr);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ public void close() {

public Object[] convertBasicArguments(int argIdx, boolean isNullable, int rowStart, int rowEnd, long nullMapAddr,
long columnAddr, long strOffsetAddr) {
LOG.info(argIdx + " " + isNullable + " " + rowStart + " " + rowEnd +" " + nullMapAddr + " " + columnAddr + " " + strOffsetAddr);
return convertBasicArg(false, argIdx, isNullable, rowStart, rowEnd, nullMapAddr, columnAddr, strOffsetAddr);
}

Expand Down

0 comments on commit b29d543

Please sign in to comment.