Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchengchenghh committed Jul 29, 2024
1 parent a3f817a commit 98a3beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/dataset/src/main/cpp/jni_wrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ ToCsvFragmentScanOptions(const std::unordered_map<std::string, std::string>& con
} else if (key == "strings_can_be_null") {
options->convert_options.strings_can_be_null = ParseBool(value);
} else {
return arrow::Status::Invalid("Config " + it.first + " is not supported.");
return arrow::Status::Invalid("Config " + key + " is not supported.");
}
}
return options;
Expand Down

0 comments on commit 98a3beb

Please sign in to comment.