Skip to content

Commit

Permalink
long long typed before decodein
Browse files Browse the repository at this point in the history
  • Loading branch information
Snafkin547 committed Sep 17, 2024
1 parent 021bf6e commit bd8412c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tests/c_api/test_join_sail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ int main(int argc, char** argv) {
}
MPI_Send(js1_header.data(), js1_header.size(), MPI_LONG_LONG, 1, HEADER_TAG, MPI_COMM_WORLD);

// for(size_t i = 0; i<js1_header.size(); i++){
// js1_header[i] = decodeIntToString(js1_header[i].as<long long>())
// }
for(size_t i = 0; i<js1_header.size(); i++){
js1_header[i] = decodeIntToString(js1_header[i]);
}

// Receive P2's header, except key col
std::vector<int> js2_header(COLS2);
Expand Down

0 comments on commit bd8412c

Please sign in to comment.