Issues
- delete on NativeQuery does not trigger flush immediatelyHHH-11561
- Specifying schema in orm mapping file causes AssertionFailure (table not found) in JoinedSubclassEntityPersisterHHH-10490Resolved issue: HHH-10490Andrea Boriero
- Support Universal Connection Pool (ucp) a Java Connection Pool configuratoinHHH-10481Resolved issue: HHH-10481
- @Version with inheritance in java8 does not workHHH-10434Resolved issue: HHH-10434Former user
- Illegal SQL is generated to resolve a join with an Entity using @InheritanceHHH-10380Resolved issue: HHH-10380
- HBM2DDL does not use described name for foreign key in join inheritanceHHH-10352Resolved issue: HHH-10352Andrea Boriero
- OSGi and Java 8 bundles are not compatibleHHH-10300Resolved issue: HHH-10300Brett Meyer
- After adding "@Audited" to an entity field the warning "Use of DOM4J entity-mode is considered deprecated" appearsHHH-10299Resolved issue: HHH-10299Chris Cranford
- Add new configuration type hibernate.hbm2dll.extra_physical_table_typesHHH-10298Resolved issue: HHH-10298Andrea Boriero
- Derived entity ID columns are nullable when @JoinColumns is overridenHHH-10295Resolved issue: HHH-10295Andrea Boriero
- Schema Update - Single table Inheritance with bi-directional OneToMany referencing superclass failsHHH-10293Resolved issue: HHH-10293Andrea Boriero
- Relation in embedded id is not initialized when using fetch joinHHH-10292
- Partially generated composite attribute is not retrieved after insertHHH-10291Resolved issue: HHH-10291Andrea Boriero
- org.hibernate.test.cfg.BatchVersionedDataConfigTest does not work properly when hibernate.jdbc.batch_versioned_data is set in environmentHHH-10290Resolved issue: HHH-10290Former user
- CPU performance regression in StatefulPersistenceContext.addEntry()HHH-10289Resolved issue: HHH-10289Ståle W. Pedersen
- Temporary table support is broken using PostgresPlusDialectHHH-10288Resolved issue: HHH-10288Andrea Boriero
- Cache keys no longer include the entity typeHHH-10287Resolved issue: HHH-10287Steve Ebersole
- SessionFactoryImpl doesn't cache and reuse existing collection cache region access strategiesHHH-10286Resolved issue: HHH-10286Steve Ebersole
- "native" ID generator is broken when using Oracle12cDialectHHH-10285Resolved issue: HHH-10285Andrea Boriero
- Temporary table support is broken on DB2HHH-10284Resolved issue: HHH-10284Former user
- Entity table is not auto-quoted in native query with hibernate.auto_quote_keyword=trueHHH-10283Resolved issue: HHH-10283
- AttributeConverter for Enum within JPQL queryHHH-10282Resolved issue: HHH-10282Christian Beikov
- Schema script generated with Persistence.generateSchema() does not include semicolonsHHH-10278Resolved issue: HHH-10278
- AttributeConverter not applied to attributes of an embeddable used as collection elementHHH-10277Resolved issue: HHH-10277Steve Ebersole
- PostgreSQL lock query exception. 5.0.3 generates "for update of" instead of "for share"HHH-10276Resolved issue: HHH-10276
- Inverse foreign key for many-to-many set is nullableHHH-10275Resolved issue: HHH-10275Andrea Boriero
- org.hibernate.id.SequenceValueExtractor does not work for DB2, Oracle, or SQL ServerHHH-10274Resolved issue: HHH-10274Andrea Boriero
- Reserved word used for database object in testsuiteHHH-10273Resolved issue: HHH-10273Former user
- Make pending-puts cache template configurableHHH-10272Resolved issue: HHH-10272Radim Vansa
- Improve performance of EventListenerRegistryHHH-10271Resolved issue: HHH-10271Luis Barreiro
- Hibernate User Guide transactions chapter examples are not properly renderedHHH-10270Resolved issue: HHH-10270Andrea Boriero
- JDBC Statement is not closed if exception appeared during query executionHHH-10269Resolved issue: HHH-10269Former user
- StatelessSessionHHH-10268Resolved issue: HHH-10268
- @DynamicUpdate and @UpdateTimestamp do not work togetherHHH-10266Resolved issue: HHH-10266
- Metamodel generation does not work properly for generic types within EclipseHHH-10265
- hibernate.cache.auto_evict_collection_cache problemsHHH-10264Resolved issue: HHH-10264Janario Oliveira
- Creating an entity sub graph on inherited attribute failsHHH-10261Resolved issue: HHH-10261
- ForUpdateFragment.toFragmentString() does not check if aliases are defined when lockOptions are not nullHHH-10259Resolved issue: HHH-10259Former user
- GenerationType.AUTO not checking database provider and never using org.hibernate.id.IdentityGeneratorHHH-10257Resolved issue: HHH-10257
- ClassCastException in ResultSetReturnImpl.java:75HHH-10256Resolved issue: HHH-10256Vlad Mihalcea
- Schema-validation: missing column looking for camel case instead of snake caseHHH-10254Resolved issue: HHH-10254Andrea Boriero
- Memory Leak when using Reference Cached, bytecode enhanced Immutable EntitiesHHH-10251Resolved issue: HHH-10251John O'Hara
- Schema validation/update leaks connectionHHH-10250Resolved issue: HHH-10250Andrea Boriero
- Oracle 12 driver breaks TemporalType.DATE behaviourHHH-10249Resolved issue: HHH-10249
- map removed TransactionFactory classesHHH-10248Resolved issue: HHH-10248Steve Ebersole
- Hibernate ignores foreign-key attribute name in hbm <many-to-many>HHH-10247Resolved issue: HHH-10247Andrea Boriero
- document package registration for Hibernate 5HHH-10243Resolved issue: HHH-10243Vlad Mihalcea
- Deal with HCANN poor handling of multiple properties by matching stem nameHHH-10242Resolved issue: HHH-10242Steve Ebersole
- Derby MultiTableBulkIdStrategy uses non-existant temporary tablesHHH-10238Resolved issue: HHH-10238
- HQL updates fail on entities with secondary tableHHH-10234Resolved issue: HHH-10234
50 of 85
delete on NativeQuery does not trigger flush immediately
Description
Details
Details
Details
Created March 9, 2017 at 5:57 AM
Updated March 9, 2017 at 6:33 AM
Activity
Show:
wuhuaxuMarch 9, 2017 at 6:29 AM
if I use CriteriaDelete instead of entityManager.remove() to delete entity, delete on nateiveQuery trigger flush immediately as the document says.
just like the select on nativeQuery.
The PersonEntity class is :
wuhuaxuMarch 9, 2017 at 6:00 AMEdited
select on NativeQuery trigger full flush immediately as the document says.
the code is :
the output is:
The code is:
The output is:
@Vlad Mihalcea