alamb commented on code in PR #4497: URL: https://github.com/apache/arrow-datafusion/pull/4497#discussion_r1039899345
########## datafusion/core/tests/sqllogictests/README.md: ########## @@ -23,7 +23,21 @@ This is the Datafusion implementation of [sqllogictest](https://www.sqlite.org/s #### Running tests -`cargo test -p datafusion --test sqllogictests` +```shell +cargo test -p datafusion --test sqllogictests +``` + +Run tests with debug logging enabled: + +```shell +RUST_LOG=debug cargo test -p datafusion --test sqllogictests +``` + +Run only the tests in `information_schema.slt`: + +```shell +cargo test -p datafusion --test sqllogictests -- information_schema.slt +``` Review Comment: In https://github.com/apache/arrow-datafusion/pull/4497/commits/fd98463a02895c35e74f36ff1134e4f40cab8b20 -- 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]
