|
Thomas, I am working on better extraction support in terms of schema validation/migration and one aspect there is better support for sequences accounting for extracting additional meta-information about sequences. Specifically I'd like to access catalog, schema and increment. For H2, that would be the following, right?:
select SEQUENCE_CATALOG, SEQUENCE_SCHEMA, SEQUENCE_NAME, INCREMENT from information_schema.sequences
|