Remove custom Postgres Dialect. Replace with DatabaseAwareLobType

This commit is contained in:
Tim Donohue
2022-03-01 17:06:19 -06:00
parent 57b19fa71a
commit 62c0e28f54
6 changed files with 63 additions and 73 deletions

View File

@@ -59,7 +59,7 @@ public class MetadataValue implements ReloadableEntity<Integer> {
* The value of the field
*/
@Lob
@Type(type = "org.hibernate.type.MaterializedClobType")
@Type(type = "org.dspace.storage.rdbms.hibernate.DatabaseAwareLobType")
@Column(name = "text_value")
private String value;