Skip to content
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

CREATE SEQUENCE implementation should reuse Sequence.getDataType() in various flags #9480

Closed
lukaseder opened this issue Oct 31, 2019 · 1 comment

Comments

@lukaseder
Copy link
Member

The CreateSequenceImpl class has method implementations like this:

    @Override
    public final CreateSequenceImpl incrementBy(Number value) {
        return incrementBy(DSL.val(value));
    }

When we really should re-use the Sequence.getDataType() in case it has converters, etc.

@lukaseder lukaseder added this to the Version 3.13.0 milestone Oct 31, 2019
@lukaseder lukaseder added this to To do in 3.13 DDL interpretation via automation Oct 31, 2019
@lukaseder lukaseder self-assigned this Oct 31, 2019
lukaseder referenced this issue Oct 31, 2019
Adds the new `AlterSequenceFlagsStep` as a supertype to
`AlterSequenceStep`, which allows setting and clearing various flags
like `MINVALUE` and `CACHE`.
lukaseder added a commit that referenced this issue Oct 31, 2019
@lukaseder
Copy link
Member Author

Fixed in jOOQ 3.13.0. Backport scheduled for 3.12.3 (#9481)

3.13 DDL interpretation automation moved this from To do to Done Oct 31, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

No branches or pull requests

1 participant