Jefffrey opened a new pull request, #19620:
URL: https://github.com/apache/datafusion/pull/19620

   ## 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.
   -->
   
   - Supersedes #19010
   
   ## 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.  
   -->
   
   We don't actually need the dependency on `testcontainers` per their README:
   
   > **Note**: you don't need to explicitly depend on `testcontainers` as it's 
re-exported dependency of `testcontainers-modules` with aligned version between 
these crates.
   
   - 
https://github.com/testcontainers/testcontainers-rs-modules-community/blob/331abcc6e61d9d76e5f8e6ec91566ce874d8fc32/README.md
   
   It was causing some version conflict issues when we tried to bump 
`testcontainers-modules` so remove it and keep only modules, fixing the code to 
use the re-exports.
   
   ## 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.
   -->
   
   Remove `testcontainers` dependency, amend imports to use re-exports of 
`testcontainers-modules`.
   
   Bump `testcontainers-modules` from 0.13 to 0.14.
   
   ## 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)?
   -->
   
   CLI test suite compiles and runs. Ran the SLT postgres compat mode locally 
successfully:
   
   ```sh
   datafusion (testcontainers-0.14)$ PG_COMPAT=true 
PG_URI="postgresql://[email protected]/postgres" cargo test 
--features=postgres --test sqllogictests
       Finished `test` profile [unoptimized + debuginfo] target(s) in 0.19s
        Running bin/sqllogictests.rs 
(/Users/jeffrey/.cargo_target_cache/debug/deps/sqllogictests-223c346f75c524e2)
   Completed 6 test files in 0 seconds 
   ```
   
   ## Are there any user-facing changes?
   
   <!--
   If there are user-facing changes then we may require documentation to be 
updated before approving the PR.
   -->
   
   No.
   
   <!--
   If there are any breaking changes to public APIs, please add the `api 
change` label.
   -->
   


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to