[
https://issues.apache.org/jira/browse/OPENJPA-934?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jeremy Bauer resolved OPENJPA-934.
----------------------------------
Resolution: Fixed
Fix Version/s: 2.0.0
> Oversight in TestSequenceGenerator
> ----------------------------------
>
> Key: OPENJPA-934
> URL: https://issues.apache.org/jira/browse/OPENJPA-934
> Project: OpenJPA
> Issue Type: Bug
> Components: sql
> Affects Versions: 2.0.0-M2
> Reporter: Milosz Tylenda
> Assignee: Jeremy Bauer
> Priority: Trivial
> Fix For: 2.0.0
>
>
> There is a small oversight in TestSequenceGenerator which results in the test
> being run on a database without sequences and not being run on a database
> with sequences.
> The snippet:
> try {
> enabled =
> ((JDBCConfiguration) emf.getConfiguration())
> .getDBDictionaryInstance().nextSequenceQuery == null;
> } catch (Throwable t) {
> enabled = false;
> }
> should read:
> try {
> enabled =
> ((JDBCConfiguration) emf.getConfiguration())
> .getDBDictionaryInstance().nextSequenceQuery != null;
> } catch (Throwable t) {
> enabled = false;
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.