<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Oct 20, 2015 at 12:00 PM, Walter Forbes Hoehn (wassa) <span dir="ltr"><<a href="mailto:wassa@memphis.edu" target="_blank">wassa@memphis.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Another perhaps unique thing about my configuration is that I have a custom ORM, which I’ve included below. Most people shouldn’t need this, but I was running V3 very early before some of the default table names were changed.<br>
<br></blockquote><div><br></div><div>I believe Walter hit on a potential solution. (Although I don't see where you are overriding any names....) The problem appears to be hibernate doing a bit more with the @Lob annotation than we would like with Postgres. In particular it's generating large object OIDs that are not used or needed. Since that annotation is only necessary to get the column type of 'TEXT' when generating the DDL, try removing it with a custom mapping:</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<?xml version="1.0" encoding="UTF-8"?><br>
<entity-mappings xmlns="<a href="http://java.sun.com/xml/ns/persistence/orm" rel="noreferrer" target="_blank">http://java.sun.com/xml/ns/persistence/orm</a>"<br>
xmlns:xsi="<a href="http://www.w3.org/2001/XMLSchema-instance" rel="noreferrer" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a>"<br>
xsi:schemaLocation="<a href="http://java.sun.com/xml/ns/persistence/orm" rel="noreferrer" target="_blank">http://java.sun.com/xml/ns/persistence/orm</a><br>
<a href="http://java.sun.com/xml/ns/persistence/orm_1_0.xsd" rel="noreferrer" target="_blank">http://java.sun.com/xml/ns/persistence/orm_1_0.xsd</a>" version="1.0"><br>
<package>org.opensaml.storage.impl</package><br>
<br> <entity class="JPAStorageRecord" access="PROPERTY"><br> <attributes><br> <basic name="value"><br>
<column name="value" nullable="false"/><br>
</basic><br> </attributes><br>
</entity><br></entity-mappings></blockquote><div><br></div>Drop this into WEB-INF/classes/META-INF/orm.xml and see if large object references continue to be generated.</div><div class="gmail_quote"><br></div><div class="gmail_quote">--Daniel Fisher</div><div class="gmail_quote"><br></div></div></div>