-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update sqllogictest requirement from 0.11.1 to 0.12.0 #5237 #5244
Conversation
Updates the requirements on [sqllogictest](https://github.com/risinglightdb/sqllogictest-rs) to permit the latest version. - [Release notes](https://github.com/risinglightdb/sqllogictest-rs/releases) - [Changelog](https://github.com/risinglightdb/sqllogictest-rs/blob/main/CHANGELOG.md) - [Commits](risinglightdb/sqllogictest-rs@v0.11.1...v0.12.0) --- updated-dependencies: - dependency-name: sqllogictest dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
…ster/sqllogictest-0.12.0
|
||
use sqllogictest::{DBOutput, DefaultColumnType}; | ||
|
||
pub type DFColumnType = DefaultColumnType; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DBOutput is now generic to support a custom column type description.
cc @melgenek as I think you were discussing this on a previous PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, sqllogictest was updated.
The update in this pr doesn't:
- validate types by default. By default, any types are successful as long as it can be parsed. Validation can be enabled with
runner.with_column_validator(strict_column_validator);
--complete
doesn't fill in the expected types. I need to create another pr insqllogictest-rs
.
Anyway, I was going to work on #4499 this weekend. If you give me a couple of days, I'll create a pr with type validation.
|
||
use sqllogictest::{DBOutput, DefaultColumnType}; | ||
|
||
pub type DFColumnType = DefaultColumnType; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, sqllogictest was updated.
The update in this pr doesn't:
- validate types by default. By default, any types are successful as long as it can be parsed. Validation can be enabled with
runner.with_column_validator(strict_column_validator);
--complete
doesn't fill in the expected types. I need to create another pr insqllogictest-rs
.
Anyway, I was going to work on #4499 this weekend. If you give me a couple of days, I'll create a pr with type validation.
Benchmark runs are scheduled for baseline = eda875b and contender = 8bc035b. 8bc035b is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…ache#5244) * Update sqllogictest requirement from 0.11.1 to 0.12.0 Updates the requirements on [sqllogictest](https://github.com/risinglightdb/sqllogictest-rs) to permit the latest version. - [Release notes](https://github.com/risinglightdb/sqllogictest-rs/releases) - [Changelog](https://github.com/risinglightdb/sqllogictest-rs/blob/main/CHANGELOG.md) - [Commits](risinglightdb/sqllogictest-rs@v0.11.1...v0.12.0) --- updated-dependencies: - dependency-name: sqllogictest dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fmt --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Which issue does this PR close?
Closes #5237
Rationale for this change
Keep up with upstream libraries (thanks @xxchan !)
What changes are included in this PR?
Are these changes tested?
in CI
Are there any user-facing changes?
No