-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
HHH-19694 Enhanced support for older Informix #10706
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
base: main
Are you sure you want to change the base?
Conversation
Thanks for your pull request! This pull request appears to follow the contribution rules. › This message was automatically generated. |
hibernate-community-dialects/src/main/java/org/hibernate/community/dialect/InformixDialect.java
Show resolved
Hide resolved
hibernate-core/src/test/java/org/hibernate/orm/test/filter/DynamicFilterTest.java
Outdated
Show resolved
Hide resolved
hibernate-core/src/test/java/org/hibernate/orm/test/filter/DynamicFilterTest.java
Outdated
Show resolved
Hide resolved
hibernate-core/src/test/java/org/hibernate/orm/test/mapping/basic/BooleanMappingTests.java
Outdated
Show resolved
Hide resolved
...core/src/test/java/org/hibernate/orm/test/query/mutationquery/MutationQueriesFilterTest.java
Outdated
Show resolved
Hide resolved
.../test/java/org/hibernate/orm/test/query/mutationquery/MutationQueriesWhereAndFilterTest.java
Outdated
Show resolved
Hide resolved
...-core/src/test/java/org/hibernate/orm/test/query/mutationquery/MutationQueriesWhereTest.java
Outdated
Show resolved
Hide resolved
hibernate-core/src/test/java/org/hibernate/orm/test/query/QueryTimeOutTest.java
Outdated
Show resolved
Hide resolved
Can you please prefix all commits with the Jira key HHH-19694 and maybe also squash the commits? |
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.
I guess the changes to the Dialect
itself are OK but I don't see why there should be any changes to tests here.
The test suite was already all passing on the current release of Informix, and we don't need to be able to test on obsolete versions of Informix. (We can't, actually, since we don't have access to any.)
So unless there's some other good reason for these test changes (other than to make the tests work on obsolete versions), please back out those changes. Thanks.
hibernate-core/src/test/java/org/hibernate/orm/test/softdelete/ImplicitSoftDeleteTests.java
Fixed
Show fixed
Hide fixed
pfffffff, oh gawd I just noticed we're already back up to 26 failures (from zero) on |
The tests with the annotation @RequiresDialectFeature(DialectChecks.SupportsDmlTargetColumnQualifier.class) relate to the bug at https://hibernate.atlassian.net/browse/HHH-18473. This issue was fixed for a newer version of Informix by switching to I'm happy to revert the other set of tests where I changed |
I don't understand what you're saying. |
Only skip for old Informix:
|
Ok, so what I'm saying is we don't want anything in the test suite which is specific to obsolete versions of Informix. |
I'm not sure what it is exactly that you're against here, but having a Wdyt @sebersole? |
@beikov the PR introduces five instances of: @SkipForDialect( dialectClass = InformixDialect.class, majorVersion = 11, minorVersion = 50, reason = "Informix does not support ....") Informix 11 is a thoroughly-obsolete EOL version of the database, which we have no way to even run, let alone test against. I don't see how that's "non-invasive". |
There are no |
https://hibernate.atlassian.net/browse/HHH-19694
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license
and can be relicensed under the terms of the LGPL v2.1 license in the future at the maintainers' discretion.
For more information on licensing, please check here.