-
-
Notifications
You must be signed in to change notification settings - Fork 101
Open
Labels
regressionSomething that was working before. A test that we have disabledSomething that was working before. A test that we have disabledwaitingWe are waiting for another PR or issue to be solved before merging this oneWe are waiting for another PR or issue to be solved before merging this one
Description
Postgres Vert.x SQL client doesn't seem to support the OID type.
See eclipse-vertx/vertx-sql-client#1328
Marking this as regression, because it used to work before the Upgrade to ORM 6.2
Metadata
Metadata
Assignees
Labels
regressionSomething that was working before. A test that we have disabledSomething that was working before. A test that we have disabledwaitingWe are waiting for another PR or issue to be solved before merging this oneWe are waiting for another PR or issue to be solved before merging this one
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
dkostakev commentedon Jun 24, 2024
Is there any clarity when the LOB is going to be supported in Postgres?
gavinking commentedon Jun 24, 2024
There is no
BLOB
orCLOB
type in Postgres so you need to be much more specific about what you mean by this.OID
, then no, that depends on support from the Vert.x driver, as noted in the linked issue.BYTEA
, which you almost certainly do, then that is already supported and has been for a very long time.Of course, you should follow the advice in the Hibernate documentation and not use the useless
@Lob
annotation when mappingBYTEA
columns:https://docs.jboss.org/hibernate/orm/6.5/introduction/html_single/Hibernate_Introduction.html#lobs