itsjunetime commented on code in PR #6572:
URL: https://github.com/apache/arrow-rs/pull/6572#discussion_r1803729646
##########
arrow-integration-testing/src/lib.rs:
##########
@@ -165,7 +165,7 @@ pub fn read_gzip_json(version: &str, path: &str) ->
ArrowJson {
/// C Data Integration entrypoint to export the schema from a JSON file
fn cdata_integration_export_schema_from_json(
- c_json_name: *const i8,
+ c_json_name: *const c_char,
out: *mut FFI_ArrowSchema,
) -> Result<()> {
let json_name = unsafe { CStr::from_ptr(c_json_name) };
Review Comment:
Hmmm, if you `cd
~/.rustup/toolchains/stable-*/lib/rustlib/src/rust/library/core &&
RUSTC_BOOTSTRAP=1 cargo +stable doc --open`, it shows `ptr: *const c_char` for
this fn, which is correct. I'm going to try to figure out if someone else has
reported this.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]