orgadish opened a new issue, #38033: URL: https://github.com/apache/arrow/issues/38033
### Describe the enhancement requested I am using `arrow` to write a package to help others interface with some data I have. As such, I am using `arrow::arrow_table(sample_data)$schema$code()` to get an initial schema, copying it into the package, and then adjusting as necessary. However, in the package, I have to explicitly use `arrow::` for each datatype. It would be great if there was an argument, e.g. `code(include_package_name=FALSE)` that could be enabled such that the output looks like: ```r arrow::schema(A = arrow::string(), ...) ``` instead of ```r schema(A = string(), ...) ### Component(s) R -- 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]
