array types on Oracle / enumerated types on Postgres
Activity

Gavin KingMay 5, 2023 at 12:51 PM
I now consider this done, and I believe it can be closed, however, it would still be worthwhile if others would review it.

Gavin KingMay 1, 2023 at 3:42 PM
This is now mostly done (though there’s still some details to finish off).
This was actually way harder than anticipated, and the PRs were rather big, but the good news is I cleaned up a bunch of cruft so that other new things should be much easier to do in the future.

Gavin KingMarch 17, 2023 at 10:50 PM
I was thinking an annotation. (By analogy with the @Struct
annotation we already have.)
Steve EbersoleMarch 17, 2023 at 2:52 PM
The names can be inferred, and that’s reasonable for exported schemas. But there is still the case of existing schemas.
An implicit naming strategy would be nice at the minimum. Possibly a new “SQL type name” annotation for any explicit cases. Maybe allow to leverage @Column#columnDefinition
for the explicit case?

Gavin KingMarch 11, 2023 at 10:55 AM
Turns out that supporting enum
types on Postgres is way harder than I expected due to how we implemented enum types in Hibernate.
(And also because Postgres implicit type conversions don’t work as well as you would expect.)
Details
Assignee
Gavin KingGavin KingReporter
Gavin KingGavin KingComponents
Fix versions
Priority
Major
Details
Details
Assignee

Reporter

With:
array types on Oracle, and
enumerated types on Postgres
we run into the same limitation: we need to export a named (user-defined) type that is reused across multiple places. In both cases, a reasonable name can be inferred. We don’t currently have a well-defined way to do this, however, so we should define that, and then update the default type mappings to make use of it.