[hibernate-issues] [Hibernate-JIRA] Created: (HHH-6096) H2Dialect should use CACHED option for temporary table creation

Steve Ebersole (JIRA) noreply at atlassian.com
Thu Apr 7 09:10:59 EDT 2011


H2Dialect should use CACHED option for temporary table creation
---------------------------------------------------------------

                 Key: HHH-6096
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-6096
             Project: Hibernate Core
          Issue Type: Improvement
          Components: core
    Affects Versions: 4.0.0.Alpha2
            Reporter: Steve Ebersole
            Assignee: Steve Ebersole
             Fix For: 4.0.0.Alpha3


Response from Thomas, answering my question:
{quote}
I guess I would use 'cached' tables (meaning the data is persisted,
and the indexes are persisted), just to avoid out-of-memory in all
cases. If it turns out to be a performance problem (which I don't
think it will) it could still be changed later on.
{quote}

{code}
create local temporary table if not exists
{code}

should get replaced with 

{code}
create cached local temporary table if not exists
{code}


-- 
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
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list