[hibernate/hibernate-orm] d76930: Fill in the TODO sections for the Locking and Cach...
by GitHub
Branch: refs/heads/master
Home: https://github.com/hibernate/hibernate-orm
Commit: d769308785951e2d1b2bb1360c8a834ac3c8a640
https://github.com/hibernate/hibernate-orm/commit/d769308785951e2d1b2bb13...
Author: vladmihalcea <mih_vlad(a)yahoo.com>
Date: 2016-01-21 (Thu, 21 Jan 2016)
Changed paths:
M documentation/documentation.gradle
M documentation/src/main/asciidoc/userguide/chapters/caching/Caching.adoc
M documentation/src/main/asciidoc/userguide/chapters/locking/Locking.adoc
M documentation/src/main/asciidoc/userguide/chapters/pc/PersistenceContext.adoc
A documentation/src/test/java/org/hibernate/jpa/test/userguide/caching/FirstLevelCacheTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/caching/NonStrictReadWriteCacheTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/caching/SecondLevelCacheTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/locking/ExplicitLockingTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/locking/locking-buildLockRequest-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/locking/locking-jpa-query-hints-scope-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/locking/locking-jpa-query-hints-timeout-example.sql
Log Message:
-----------
Fill in the TODO sections for the Locking and Caching chapters
8 years, 11 months
[hibernate/hibernate-orm] a5e658: HHH-9548 - Allow propagation of NULL for stored-pr...
by GitHub
Branch: refs/heads/master
Home: https://github.com/hibernate/hibernate-orm
Commit: a5e65834a1a0dee89c99c67d6453bc38b3d7cff9
https://github.com/hibernate/hibernate-orm/commit/a5e65834a1a0dee89c99c67...
Author: Steve Ebersole <steve(a)hibernate.org>
Date: 2016-01-19 (Tue, 19 Jan 2016)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/boot/internal/SessionFactoryBuilderImpl.java
M hibernate-core/src/main/java/org/hibernate/boot/internal/SessionFactoryOptionsImpl.java
M hibernate-core/src/main/java/org/hibernate/boot/internal/SessionFactoryOptionsState.java
M hibernate-core/src/main/java/org/hibernate/boot/spi/AbstractDelegatingSessionFactoryOptions.java
M hibernate-core/src/main/java/org/hibernate/boot/spi/SessionFactoryOptions.java
M hibernate-core/src/main/java/org/hibernate/cfg/AvailableSettings.java
M hibernate-core/src/main/java/org/hibernate/cfg/annotations/NamedProcedureCallDefinition.java
M hibernate-core/src/main/java/org/hibernate/procedure/ParameterRegistration.java
M hibernate-core/src/main/java/org/hibernate/procedure/internal/AbstractParameterRegistrationImpl.java
M hibernate-core/src/main/java/org/hibernate/procedure/internal/NamedParameterRegistration.java
M hibernate-core/src/main/java/org/hibernate/procedure/internal/PositionalParameterRegistration.java
M hibernate-core/src/main/java/org/hibernate/procedure/internal/ProcedureCallImpl.java
M hibernate-core/src/main/java/org/hibernate/procedure/internal/ProcedureCallMementoImpl.java
M hibernate-core/src/main/java/org/hibernate/procedure/spi/ParameterRegistrationImplementor.java
M hibernate-core/src/test/java/org/hibernate/test/sql/storedproc/StoredProcedureTest.java
Log Message:
-----------
HHH-9548 - Allow propagation of NULL for stored-procedure argument parameters to database
8 years, 11 months
[hibernate/hibernate-ogm] 4d2e25: OGM-962 Fix Yes/No and True/False type mapping in ...
by GitHub
Branch: refs/heads/master
Home: https://github.com/hibernate/hibernate-ogm
Commit: 4d2e250b002417048b0548acbb46fa8509d6282f
https://github.com/hibernate/hibernate-ogm/commit/4d2e250b002417048b0548a...
Author: Nicola Ferraro <nibbio84(a)gmail.com>
Date: 2016-01-17 (Sun, 17 Jan 2016)
Changed paths:
M cassandra/pom.xml
M cassandra/src/main/java/org/hibernate/ogm/datastore/cassandra/model/impl/ResultSetTupleIterator.java
M cassandra/src/main/java/org/hibernate/ogm/datastore/cassandra/type/impl/CassandraTrueFalseType.java
M cassandra/src/main/java/org/hibernate/ogm/datastore/cassandra/type/impl/CassandraYesNoType.java
A cassandra/src/main/java/org/hibernate/ogm/datastore/cassandra/type/impl/CharacterStringGridTypeDescriptor.java
A cassandra/src/test/java/org/hibernate/ogm/datastore/cassandra/test/mapping/CassandraBooleanCharacterTypeTest.java
Log Message:
-----------
OGM-962 Fix Yes/No and True/False type mapping in Cassandra
Commit: 37f7e6a6f39b25d3005ca38c3962722a6c1b37ce
https://github.com/hibernate/hibernate-ogm/commit/37f7e6a6f39b25d3005ca38...
Author: Gunnar Morling <gunnar.morling(a)googlemail.com>
Date: 2016-01-19 (Tue, 19 Jan 2016)
Changed paths:
M cassandra/src/main/java/org/hibernate/ogm/datastore/cassandra/type/impl/CassandraTrueFalseType.java
M cassandra/src/main/java/org/hibernate/ogm/datastore/cassandra/type/impl/CassandraYesNoType.java
R cassandra/src/main/java/org/hibernate/ogm/datastore/cassandra/type/impl/CharacterStringGridTypeDescriptor.java
M cassandra/src/main/java/org/hibernate/ogm/datastore/cassandra/type/impl/TranslatingGridTypeDescriptor.java
Log Message:
-----------
OGM-962 Re-using existing TranslatingGridTypeDescriptor instead of dedicated CharacterStringGridTypeDescriptor
Compare: https://github.com/hibernate/hibernate-ogm/compare/9f00e95010e8...37f7e6a...
8 years, 11 months
[hibernate/hibernate-orm] 90b7f9: Add Flushing chapter and JPQL section for batch up...
by GitHub
Branch: refs/heads/master
Home: https://github.com/hibernate/hibernate-orm
Commit: 90b7f9e07cc2c9537087185f4b576aa9abefff37
https://github.com/hibernate/hibernate-orm/commit/90b7f9e07cc2c9537087185...
Author: vladmihalcea <mih_vlad(a)yahoo.com>
Date: 2016-01-19 (Tue, 19 Jan 2016)
Changed paths:
M documentation/src/main/asciidoc/userguide/Hibernate_User_Guide.adoc
M documentation/src/main/asciidoc/userguide/chapters/batch/Batching.adoc
R documentation/src/main/asciidoc/userguide/chapters/batch/extras/executeUpdate.java
M documentation/src/main/asciidoc/userguide/chapters/batch/extras/hql_delete.java
M documentation/src/main/asciidoc/userguide/chapters/batch/extras/hql_insert.java
A documentation/src/main/asciidoc/userguide/chapters/batch/extras/hql_update.java
A documentation/src/main/asciidoc/userguide/chapters/batch/extras/jpql_delete.java
A documentation/src/main/asciidoc/userguide/chapters/batch/extras/jpql_update.java
M documentation/src/main/asciidoc/userguide/chapters/domain/basic_types.adoc
M documentation/src/main/asciidoc/userguide/chapters/flushing/Flushing.adoc
R documentation/src/main/docbook/devguide-old/en-US/extras/hql-insert.java
A documentation/src/main/docbook/devguide-old/en-US/extras/hql_insert.java
M documentation/src/test/java/org/hibernate/jpa/test/userguide/associations/OneToManyUnidirectionalTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/AlwaysFlushTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/AutoFlushTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/CommitFlushTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/ManualFlushTest.java
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/flushing-always-flush-sql-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/flushing-auto-flush-commit-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/flushing-auto-flush-jpql-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/flushing-auto-flush-jpql-overlap-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/flushing-commit-flush-jpql-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/flushing-commit-flush-sql-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/flush/flushing-manual-flush-example.sql
A documentation/src/test/java/org/hibernate/jpa/test/userguide/ql/BulkTest.java
Log Message:
-----------
Add Flushing chapter and JPQL section for batch updates
8 years, 11 months