Skip to content

Commit

Permalink
clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
mxwli committed Apr 9, 2024
1 parent 1aee3ad commit 4d9b7bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/arrow/arrow_row_batch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ void ArrowRowBatch::templateCopyNonNullValue<LogicalTypeID::STRUCT>(ArrowVector*

template<>
void ArrowRowBatch::templateCopyNonNullValue<LogicalTypeID::INTERNAL_ID>(ArrowVector* vector,
const LogicalType& type, Value* value, std::int64_t /*pos*/) {
const LogicalType& /*type*/, Value* value, std::int64_t /*pos*/) {
auto nodeID = value->getValue<nodeID_t>();
Value offsetVal((std::int64_t)nodeID.offset);
Value tableIDVal((std::int64_t)nodeID.tableID);
Expand Down Expand Up @@ -695,7 +695,7 @@ ArrowArray* ArrowRowBatch::convertStructVectorToArray(ArrowVector& vector,
}

ArrowArray* ArrowRowBatch::convertInternalIDVectorToArray(ArrowVector& vector,
const LogicalType& type) {
const LogicalType& /*type*/) {
auto result = createArrayFromVector(vector);
result->n_buffers = 1;
vector.childPointers.resize(2);
Expand Down

0 comments on commit 4d9b7bf

Please sign in to comment.