## Which issue does this PR close?
<!--
We generally require a GitHub issue to be filed for all bug fixes and
enhancements and this helps us generate change logs for our releases.
You can link an issue to this PR using the GitHub syntax. For example
`Closes #123` indicates that this PR will close issue #123.
-->
- Closes #https://github.com/apache/datafusion/issues/18512.
## Rationale for this change
<!--
Why are you proposing this change? If this is already explained clearly
in the issue then this section is not needed.
Explaining clearly why changes are proposed helps reviewers understand
your changes and offer better suggestions for fixes.
-->
## What changes are included in this PR?
<!--
There is no need to duplicate the description in the issue here but it
is sometimes worth providing a summary of the individual changes in this
PR.
-->
## Are these changes tested?
<!--
We typically require tests for all PRs in order to:
1. Prevent the code from being accidentally broken by subsequent changes
2. Serve as another way to document the expected behavior of the code
If tests are not included in your PR, please explain why (for example,
are they covered by existing tests)?
-->
## Are there any user-facing changes?
<!--
If there are user-facing changes then we may require documentation to be
updated before approving the PR.
-->
<!--
If there are any breaking changes to public APIs, please add the `api
change` label.
-->
---------
Co-authored-by: Sergey Zhukov <szhukov@aligntech.com>
Co-authored-by: Andrew Lamb <andrew@nerdnetworks.org>
* Fix md5 return_type to only return Utf8 as per current code impl.
* ci improvements
* Lock taiki-e/install-action to a githash for apache action policy - Release 2.46.19 in the case of this hash.
* Lock taiki-e/install-action to a githash for apache action policy - Release 2.46.19 in the case of this hash.
* Revert nextest change until action is approved.
* Exclude requires workspace
* Fixing minor typo to verify ci caching of builds is working as expected.
* Updates from PR review.
* Adding issue link for disabling intel mac build
* improve performance of running examples
* remove cargo check
* Fix running examples readme
Some examples are runnable from any place (e.g. `csv_sql`), but some
expect a specific working directory (e.g. `regexp`). Running from
`datafusion-examples/examples` is tested on CI so guaranteed to work,
let's put this path in the README.
As a follow-up, we should look what it would take to make examples
runnable directly from an IDE such as RustRover.
* Remove doubled fmt check from CI
Examples' format is checked in `check-fmt` job, so can be skipped in
`rust_example.sh`.
* feat: add example for copy to
* better docs plus tempdir
* build: clean examples if over 10GB
* only 1GB
* build: try clearing some disk space before running
* build: remove sudo
* build: try clean
* build: run clean
* build: only clean examples
* docs: better output for example
* fix: downgrade tonic for arrow compatibility
Tonic 0.10 and 0.11 are not API compatible.
Arrow 50 depends on tonic 0.10, and datafusion must match that dependency for compatibility reasons.
* feat: make nested examples runnable
cargo run --example doesn't support nested examples. Nested examples need an explicit block to be runnable.
* fix: fix custom catalog typo and formatting
* docs: add note about upgrading tonic with arrow
* ci: add cargo check for all examples