This is an automated email from the ASF dual-hosted git repository. github-merge-queue[bot] pushed a commit to branch gh-readonly-queue/main/pr-23409-95398f07f26f098188472385f808ddcd49160eda in repository https://gitbox.apache.org/repos/asf/datafusion.git
commit c70a053ee20514c81d29225e44d70a3c5b21c981 Author: Yongting You <[email protected]> AuthorDate: Sat Jul 11 21:14:40 2026 +0800 minor: Remove `.gitignore` item for datafusion-examples (#23409) ## 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 #. ## 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. --> `ci/scripts/rust_example.sh` previously left generated files behind after running, so a `.gitignore` entry was added in #14840 to improve the developer experience. The script has now been fixed, so this PR removes that ignore entry. This ensures future generated files are not silently hidden by `.gitignore`. - https://github.com/apache/datafusion/pull/14840 ## 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. --> --- .gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index c1f9677e47..2bcc0950d0 100644 --- a/.gitignore +++ b/.gitignore @@ -73,9 +73,6 @@ datafusion/core/benches/data/* filtered_rat.txt rat.txt -# data generated by examples -datafusion-examples/examples/datafusion-examples/ - # Samply profile data profile.json.gz --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
