The following comment has been added to this issue:
Author: Eric Fenderbosch
Created: Fri, 26 Sep 2003 8:15 AM
Body:
I read the other JIRA issue and it was rejected. I also read the old sourceforge forum thread and you state that it _should_ work the way I'm suggesting. Just curious what the reasoning is for not making this change.
---------------------------------------------------------------------
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: Closed
Priority: Minor
Resolution: WON'T FIX
Project: Hibernate2
Components:
core
Versions:
2.0.3
Assignee:
Reporter: Eric Fenderbosch
Created: Fri, 12 Sep 2003 12:44 PM
Updated: Thu, 25 Sep 2003 3:35 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
|