This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch gh-readonly-queue/main/pr-2119-29d88fe9145c937c3798d799b4ea320d82776d73 in repository https://gitbox.apache.org/repos/asf/datafusion-sqlparser-rs.git
commit 0dbb9c9f9a3876303d6d8cf8d246867441fe4b57 Author: Andrew Lamb <[email protected]> AuthorDate: Tue Dec 2 14:21:39 2025 -0500 Fix verification script for new sqlparser_derive version (#2119) --- dev/release/verify-release-candidate.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index 9ff7e17b..089a6ffc 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -129,8 +129,10 @@ test_source_distribution() { exit 1 fi + # Can't test using dry-run because sqlparser depends on sqlparser_derive + # see https://github.com/crate-ci/cargo-release/issues/691#issuecomment-2059866021 # Check that publish works - cargo publish --dry-run + # cargo publish --dry-run } TEST_SUCCESS=no --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
