Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
acezen committed Nov 8, 2023
1 parent c4e5d6a commit 11fc392
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cpp/src/arrow_chunk_writer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,9 @@ Status VertexPropertyWriter::WriteChunk(
auto schema = input_table->schema();
int indice = schema->GetFieldIndex(GeneralParams::kVertexIndexCol);
if (indice == -1) {
return Status::Invalid("Column named ", GeneralParams::kVertexIndexCol,
" does not exist in the input table");
return Status::Invalid("The internal id Column named ",
GeneralParams::kVertexIndexCol,
" does not exist in the input table.");
}

std::vector<int> indices({indice});
Expand Down

0 comments on commit 11fc392

Please sign in to comment.