[ http://opensource.atlassian.com/projects/hibernate/browse/HHH-1853?page=c... ]
Steve Ebersole closed HHH-1853.
-------------------------------
Resolution: Rejected
See HHH-56665
> CREATE SCHEMA inside database-object need to execute before tables are created
> ------------------------------------------------------------------------------
>
> Key: HHH-1853
> URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-1853
> Project: Hibernate Core
> Issue Type: Improvement
> Affects Versions: 3.1.3
> Environment: hsqldb 1.8.0
> Reporter: Mattias Jiderhamn
> Priority: Minor
> Attachments: create-schema.patch, create-schema2.patch
>
>
> In order to have Hibernate create database schemas for hsqldb, you have to insert a <database-object> in your mapping file (http://forums.hibernate.org/viewtopic.php?p=2305138). Problem is, all the database-object statements are executed after the tables are created, so tables in non-default schemas will not be created. To get around this, you have to first use Configuration.generateSchemaCreationScript() to get the schemas, and then Configuration.generateSchemaUpdateScript() to get the tables inside the schemas.
> (This is a bit problematic when using Springs LocalSessionFactoryBean)
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Use FieldCacheCollector for faceting
-------------------------------------
Key: HSEARCH-706
URL: http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-706
Project: Hibernate Search
Issue Type: Bug
Components: engine
Affects Versions: 3.4.0.Alpha1
Reporter: Hardy Ferentschik
Assignee: Hardy Ferentschik
Fix For: 3.4.0.Beta1
ATM the faceting code uses {{FieldCacheContainer}} which implies auto-boxing calls. Really we should align our usage of the Lucene field cache.
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Add below / above support in faceting DSL
-----------------------------------------
Key: HSEARCH-712
URL: http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-712
Project: Hibernate Search
Issue Type: Improvement
Components: query
Reporter: Emmanuel Bernard
Assignee: Hardy Ferentschik
{code}FacetRequest rangeRequest = queryBuilder( Fruit.class ).facet()
.name( priceRange )
.onField( indexFieldName )
.range().below(1.0).excludeLimit()
.from( 1.0 ).to( 1.50 ).excludeLimit()
.from( 1.50 ).to( 3.00 ).excludeLimit()
.above(3)
.createFacet();{code}
add support for below and above
Add test to make sure
....to(1.5).excludeLimit()
.from(1.5)
works properly
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
Fix a mistake in the reference guide about custom properties supported by Hibernate Validator
---------------------------------------------------------------------------------------------
Key: HV-454
URL: http://opensource.atlassian.com/projects/hibernate/browse/HV-454
Project: Hibernate Validator
Issue Type: Improvement
Components: documentation
Affects Versions: 4.2.0.Beta2
Reporter: Kevin Pollet
Fix For: 4.2.0.CR1
Currently the reference guide says that (end of section 4.1):
{quote}
Hibernate Validator does currently not make use of any custom properties.
{quote}
This is false because now Hibernate Validator has a custom property {{hibernate.validator.fail_fast}} which can be used in the configuration file like this:
{code}
<validation-config>
<default-provider>org.hibernate.validator.HibernateValidator</default-provider>
<property name="hibernate.validator.fail_fast">true</property>
</validation-config>
{code}
See http://docs.jboss.org/hibernate/validator/4.2/reference/en-US/html_single...
--
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....
-
For more information on JIRA, see: http://www.atlassian.com/software/jira