Hi,
I'm currently using openjpa-1.1.0-SNAPSHOT-r420667:585269, with
'openjpa.jdbc.Schema' property set to our database schema. As I tried
migrating to the latest build, jpa queries don't use this schema info
and the Runtime Trace log also doesn't show this property(It shows
with the older(above) version). So I had to revert back to the earlier
version.
Full configuration properties inside Spring looks like this:
<property name="jpaPropertyMap">
<map>
<entry key="openjpa.MaxFetchDepth" value="1" />
<entry key="openjpa.jdbc.Schema" value="myschema" />
<entry key="openjpa.jdbc.MappingDefaults"
value="jpa(ForeignKeyDeleteAction=restrict,JoinForeignKeyDeleteAction=restrict)"
/>
<entry key="openjpa.Log" value="DefaultLevel=WARN,
Runtime=TRACE, SQL=TRACE" />
<entry key="openjpa.jdbc.DBDictionary"
value="org.apache.openjpa.jdbc.sql.H2Dictionary" />
</map>
</property>
Has schema configuration changed recently? Or is this a bug?
Thanks for any pointers.
Prashant