itsjunetime commented on code in PR #6572:
URL: https://github.com/apache/arrow-rs/pull/6572#discussion_r1803717318


##########
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:
   So it does seem to say `*const i8` in the signature, but if you click 
through to the `source`, it shows `ptr: *const c_char`. I don't know what's up 
with that, it feels like  a docs.rs bug.



-- 
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]

Reply via email to