Message:
A new issue has been created in JIRA.
---------------------------------------------------------------------
View the issue:
http://opensource.atlassian.com/projects/hibernate/secure/ViewIssue.jspa?key=HB-329
Here is an overview of the issue:
---------------------------------------------------------------------
Key: HB-329
Summary: <property name="default_schema"> Does not propagate to non-Table types
Type: Bug
Status: Unassigned
Priority: Minor
Project: Hibernate2
Components:
core
Versions:
2.0.3
Assignee:
Reporter: Eric Fenderbosch
Created: Fri, 12 Sep 2003 12:44 PM
Updated: Fri, 12 Sep 2003 12:44 PM
Description:
When specifing
<property name="default_schema">eousr</property>
in cfg.xml, this does not have any effect on sequence names.
Example:
<id name="id" type="java.lang.Long">
<column name="TARIFF_ID"/>
<generator class="sequence">
<param name="sequence">tariff_seq</param>
</generator>
</id>
However, if the schema is specified in the mapping using
<hibernate-mapping schema="eousr">
or
<class
name="com.fedex.cc.objectlib.tariff.TariffState"
table="TARIFF"
schema="eousr">
then it works as expected.
---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
If you want more information on JIRA, or have a bug to report see:
http://www.atlassian.com/software/jira
|