Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe-Abraham committed Nov 8, 2024
1 parent eecf288 commit eda619b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions velox/functions/remote/client/Remote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,11 @@ class RemoteFunction : public exec::VectorFunction {
std::move(args));

// Serialize the RowVector into an IOBuf
std::unique_ptr<IOBuf> payload = std::make_unique<IOBuf>(rowVectorToIOBuf(
std::unique_ptr<IOBuf> requestBody = std::make_unique<IOBuf>(rowVectorToIOBuf(
remoteRowVector, rows.end(), *context.pool(), &serde));

WriteThis wt;
wt.buf = std::move(payload);
wt.buf = std::move(requestBody);
wt.offset = 0;

// Initialize CURL
Expand Down

0 comments on commit eda619b

Please sign in to comment.