David Mansfield
90fdca9053
HHH-3646 - throw a better exception when criteria is placed directly on component
...
In the CriteriaQueryTranslator, we process the path given by
a SubCriteria object looking for the entity name for the property. If
the SubCriteria was mistakenly created on a component type, we will exit
the loop using the owning entity, and will eventually end up failing
(throwing an exception) trying to lookup up the restricted property
against the entity, instead of against the component. Fix this by
throwing a more informative exception, and modify the documentation to
be explicit about how to do this properly.
2011-03-30 12:23:20 -05:00
David Mansfield
69b09dfcd2
HHH-3646 - don't append spurious comma in SQL select fragment
...
In the JoinWalker, we assemble an SQL select list fragment
from a list of Joinables. In the existing code, we see it's
possible for the selectFragment generated by a joinable to be empty.
However if the LAST joinable generates an empty fragment, we put
a spurious comma into the fragment. Fix this by only prepending a
comma when necessary.
2011-03-30 12:23:20 -05:00
David Mansfield
9f311a4698
HHH-3646 - implement Criteria API querying of collection-of-component and collection-of-scalar
...
The general approach is:
* create an interface called the CriteriaInfoProvider which abstracts
the operations that are different for the different types of Criteria
targets.
* change the getPathEntityName method to be a factory method for
creating the proper implementation of the interface
* change the rest of CriteriaQueryTranslator to use the interface
instead of using the previous entity-only implementation
* implementations of the interface exist for
Entity: this implements the same code as currently exists
ComponentCollection: for collection-of-component
ScalarCollection: for collection-of-value
Component: for components
* update the logic in CriteriaJoinWalker which has to be very careful
about how it works since the walker walks certain property paths twice.
2011-03-30 12:23:20 -05:00
David Mansfield
4ddaaa1deb
HHH-3646 - make SessionFactoryHelper::getCollectionPropertyMapping public - it will be used later
2011-03-30 12:23:20 -05:00
David Mansfield
b8230bd07d
HHH-3646 - implement a test case for query collection-of-component
2011-03-30 12:23:20 -05:00
David Mansfield
64b73d6301
HHH-3646 - implement a test case for query collection-of-value
2011-03-30 12:23:20 -05:00
Steve Ebersole
d104f28a59
HHH-5348 - support for TypedQuery jpaql/hql "scalar" queries
2011-03-30 11:37:12 -05:00
David Mansfield
05f9bdcbb0
clear stats before running to ensure accurate test results
2011-03-29 15:26:26 -05:00
David Mansfield
7058cb048f
remove state after running to avoid failure later
2011-03-29 15:26:26 -05:00
Steve Ebersole
ba71fe0132
HHH-6036 - integration documentation generation
2011-03-29 15:14:09 -05:00
Steve Ebersole
339faabb14
HHH-6052 - Make statistics a service
2011-03-28 12:41:30 -05:00
Emmanuel Bernard
2e0f128cbc
HHH-5947 Migrate tests to JUnit 4 infra
2011-03-28 15:47:44 +02:00
Manuel Bernhardt
9d697660f6
HHH-5947: 'Fix' that at least improves the error message
2011-03-28 15:13:09 +02:00
Manuel Bernhardt
928354827a
HHH-5947: Test case
2011-03-28 15:13:09 +02:00
Steve Ebersole
6a180aaa1f
HHH-5913 - Implement set of event listeners as a service
2011-03-28 07:55:45 -05:00
Steve Ebersole
2f04cbffe6
HHH-5913 - Implement set of event listeners as a service
2011-03-27 14:35:01 -05:00
Steve Ebersole
e3a0525fb1
HHH-5913 - Implement set of event listeners as a service
2011-03-27 14:07:23 -05:00
Steve Ebersole
42c609cfdd
HHH-5913 - Implement set of event listeners as a service
2011-03-27 11:45:18 -05:00
Steve Ebersole
c28b553f21
HHH-5913 - Implement set of event listeners as a service
2011-03-27 11:45:18 -05:00
Steve Ebersole
e8ebe8e396
HHH-5913 - Implement set of event listeners as a service
2011-03-27 11:45:18 -05:00
Steve Ebersole
5adf2960c2
HHH-5913 - Implement set of event listeners as a service
2011-03-27 11:45:18 -05:00
Steve Ebersole
478e10ae3a
HHH-5562 - Improve how event listeners are handled and introduce a service pattern for integrators to leverage
2011-03-27 10:43:38 -05:00
Steve Ebersole
7cba21dcd9
HHH-5562 - Improve how event listeners are handled and introduce a service pattern for integrators to leverage
2011-03-27 10:39:38 -05:00
Steve Ebersole
47abaf12fa
HHH-5697 - Support for multi-tenancy
2011-03-26 10:50:18 -05:00
Steve Ebersole
fe8c7183d1
HHH-5697 - Support for multi-tenancy
2011-03-26 09:11:33 -05:00
Steve Ebersole
3ff0288da5
HHH-5697 - Support for multi-tenancy
2011-03-25 18:31:04 -05:00
Steve Ebersole
98877a3b28
HHH-6053 - Create an interface for centralizing the contract that is shared between Session and StatelessSession
2011-03-25 12:44:32 -05:00
Steve Ebersole
d4783bdaeb
HHH-6051 - Create a SessionFactory scoped ServiceRegistry
2011-03-25 10:54:18 -05:00
Steve Ebersole
815baf4348
HHH-6051 - Create a sessionfactory scoped ServiceRegistry
2011-03-24 22:18:38 -05:00
Steve Ebersole
731d00fd6d
HHH-6047 - allow nesting of ServiceRegistry
2011-03-24 14:38:58 -05:00
Steve Ebersole
97fb031dba
HHH-2680 - Blobs not updated on Session.merge() for detached instances
2011-03-23 17:32:00 -05:00
Steve Ebersole
a491f64570
HHH-2680 - Blobs not updated on Session.merge() for detached instances
2011-03-23 17:30:13 -05:00
Steve Ebersole
fd08540859
Merge branch 'master' of github.com:hibernate/hibernate-core
2011-03-23 12:07:15 -05:00
Steve Ebersole
1421c3f54d
HHH-5284 - Allow Type to dictate the default length/scale/precision
2011-03-23 12:06:19 -05:00
JPAV
9b06108300
Merge branch 'master' of git://github.com/hibernate/hibernate-core
2011-03-22 14:12:21 -05:00
JPAV
7767dfbc06
HHH-5615 Replaced slf4j references with jboss-logging for a few classes that fell through the cracks
2011-03-22 14:11:59 -05:00
Steve Ebersole
671ef3accd
HHH-6016 - Migrate version injection plugin to Gradle
2011-03-21 20:33:19 -05:00
Steve Ebersole
4f188a934c
HHH-6033 - Migrate stats to api/spi/internal split
2011-03-21 18:37:44 -05:00
Steve Ebersole
f93d1412a4
HHH-6033 - Migrate stats to api/spi/internal split
2011-03-21 11:51:49 -05:00
Steve Ebersole
3402ba3a67
HHH-6028 - Remove o.h.classic.Session/Validatable
2011-03-19 08:16:33 -05:00
Steve Ebersole
efa325f5db
HHH-6027 - Migrate o.h.action pakcage to api/spi/internal split
2011-03-18 17:47:49 -05:00
Steve Ebersole
19791a6c7d
HHH-6026 - Migrate bytecode provider integrations to api/spi/internal split
2011-03-18 15:51:44 -05:00
Steve Ebersole
82d2ef4b1f
HHH-6025 - Remove cglib dependencies
2011-03-18 14:48:17 -05:00
Steve Ebersole
53941b9b72
HHH-4999 - createSQLQuery(query).list() result screw up when when columns in different tables have same name
2011-03-18 08:29:15 -05:00
Steve Ebersole
0a908cb518
HHH-5942 - Migrate to JUnit 4
2011-03-17 18:30:33 -05:00
Steve Ebersole
a4562f4da1
HHH-5942 - Migrate to JUnit 4
2011-03-17 18:30:33 -05:00
Steve Ebersole
819f8da9ea
HHH-5672 - Develop the binding model (binding between logical and relational)
2011-03-17 15:07:08 -05:00
Emmanuel Bernard
5f3749e590
Add JavaDoc to signal Hibrnate OGM dependencies
2011-03-17 13:46:49 -05:00
Steve Ebersole
718d56e267
HHH-6013 - Consolidate on single JTA impl for testing
2011-03-16 13:38:14 -05:00
Steve Ebersole
bcff8948fb
HHH-5942 - Migrate to JUnit 4
2011-03-14 13:30:28 -05:00
Steve Ebersole
9ad55dc4bd
HHH-5942 - Migrate to JUnit 4
2011-03-14 13:14:07 -05:00
Steve Ebersole
df4df47b95
HHH-5942 - Migrate to JUnit 4
2011-03-14 13:14:07 -05:00
Steve Ebersole
20a120ef6c
HHH-5942 - Migrate to JUnit 4
2011-03-14 13:14:07 -05:00
Steve Ebersole
1c203f35ec
HHH-5942 - Migrate to JUnit 4
2011-03-14 13:14:07 -05:00
Steve Ebersole
a6f8767a3c
HHH-5942 - Migrate to JUnit 4
2011-03-14 13:14:07 -05:00
Steve Ebersole
fd3fb8b316
HHH-5942 - Migrate to JUnit 4
2011-03-14 13:14:07 -05:00
Steve Ebersole
03ada52204
HHH-5942 - Migrate to JUnit 4
2011-03-14 13:14:06 -05:00
Emmanuel Bernard
74df160f31
HHH-5940 Make @MakKeyJoinColumns work and add test
2011-03-14 18:55:15 +01:00
Gail Badner
b30ff014ad
HHH-6010 : Remove duplication in code involving Work and ReturningWork
2011-03-11 16:34:47 -08:00
Gail Badner
30ab30c5fa
Merge branch 'master' of github.com:hibernate/hibernate-core
2011-03-09 15:12:54 -08:00
Gail Badner
7c5f2ae5db
HHH-5949 : Migrate, complete and integrate TransactionFactory as a service
2011-03-09 15:12:30 -08:00
JPAV
97a310d26d
HHH-5615 Converted logging framework from slf4j to jboss logging for a few class that fell through the cracks
2011-03-09 14:58:22 -06:00
Gail Badner
4b130da83e
HHH-5590 : Don't log and rethrow exception in AbstractFlushingEventListener
2011-03-09 12:14:19 -08:00
Steve Ebersole
8e71b82183
HHH-5949 - Migrate, complete and integrate TransactionFactory as a service
2011-03-09 13:02:24 -06:00
Steve Ebersole
5492f60f06
HHH-5994 - Inserts may be delayed because TransactionCoordinatorImpl.isTransactionInProgress() returns false for non-JTA transactions
2011-03-09 10:01:54 -06:00
Steve Ebersole
6e35a57870
Merge branch 'master' of github.com:hibernate/hibernate-core
2011-03-09 09:52:53 -06:00
Steve Ebersole
8b94ac65a1
HHH-5994 - Inserts may be delayed because TransactionCoordinatorImpl.isTransactionInProgress() returns false for non-JTA transactions
2011-03-09 09:52:12 -06:00
Gail Badner
8870afb074
HHH-5994 : Changed MergeTest.mergeManaged to be FailureExpected
2011-03-09 03:44:03 -08:00
Gail Badner
121c039ecd
HHH-5766 : New services are not wired into standalone SchemaExport, SchemaUpdate, and SchemaValidator
2011-03-09 03:24:25 -08:00
Gail Badner
32577a8a79
HHH-5961 : Contextual LOB creator is used when the JDBC driver does not support JDBC4 Connection.createBlob()
2011-03-08 21:14:29 -08:00
Gail Badner
ad5f88c2d6
HHH-5961 : Contextual LOB creator is used when the JDBC driver does not support JDBC4 Connection.createBlob()
2011-03-08 21:12:02 -08:00
Gail Badner
724cd1f95d
HHH-5995 : Compile error because Statement is undefined in SqlExceptionHelper
2011-03-08 20:37:08 -08:00
JPAV
78136e02ff
Merge branch 'master' of git://github.com/hibernate/hibernate-core
2011-03-08 16:31:47 -06:00
JPAV
b7b52903b5
Final sync with upstream master
2011-03-08 16:26:03 -06:00
JPAV
346418c4ef
Final sync with upstream master
2011-03-08 16:19:57 -06:00
Gail Badner
985b45a920
HHH-5842 : Types.Binary column type should be registered with a length for HSQLDialect
2011-03-08 13:32:23 -08:00
Gail Badner
0b10334e40
HHH-5991 : add Configuration.buildSessionFactory() (without ServiceRegistry arg)
2011-03-07 13:40:06 -08:00
Gail Badner
b1036c09a7
HHH-5983 : Actions have non-transient references that cause inconsistencies after deserialization
2011-03-07 09:24:36 -08:00
Steve Ebersole
e1c03f28fd
HHH-5949 - Migrate, complete and integrate TransactionFactory as a service
2011-03-07 10:48:32 -06:00
Steve Ebersole
56d242acdf
HHH-5949 - Migrate, complete and integrate TransactionFactory as a service
2011-03-06 08:46:57 -06:00
Steve Ebersole
0816d00e59
HHH-5986 - Refactor org.hibernate.util package for spi/internal split
2011-03-05 09:26:34 -06:00
Steve Ebersole
73e85ee761
HHH-5781 - Refactor code in org.hibernate.jdbc to spi/internal and remove obsolete code
2011-03-05 08:06:21 -06:00
Steve Ebersole
21cc90fbf4
HHH-5985 - Remove TransactionHelper in preference of IsolationDelegate
2011-03-04 21:46:06 -06:00
Steve Ebersole
ddfcc44d76
HHH-5916 - Add support for a programmatic way to define a default EntityPersister and CollectionPersister class implementation
2011-03-04 15:37:25 -06:00
Gail Badner
537ee25e82
Merge branch 'master' of github.com:hibernate/hibernate-core
2011-03-04 11:33:28 -08:00
Gail Badner
747c2dd50d
HHH-5982 : Flush checker bugs
2011-03-04 11:18:34 -08:00
Steve Ebersole
0093974180
Merge branch 'master' into HHH-5981
2011-03-04 12:46:15 -06:00
Steve Ebersole
4f4f374dae
HHH-5981 - Clarify Session.disconnect() and Session.reconnect() behavior
2011-03-04 12:43:43 -06:00
David M. Carr
818987751e
HHH-5977 Add a couple additional unit tests for when you use a @JoinColumn with a secondary table specified.
2011-03-03 23:58:11 +01:00
Steve Ebersole
bf186e7a6e
HHH-5949 - Migrate, complete and integrate TransactionFactory as a service
2011-03-03 11:53:20 -06:00
Steve Ebersole
08d9fe2117
HHH-5949 - Migrate, complete and integrate TransactionFactory as a service
2011-03-02 16:52:43 -06:00
Gail Badner
7243d04541
HHH-5941 : remove deprecated set(), nullSafeSet(), get(), nullSafeGet() methods and add SessionImplementer argument to UserType.nullSafeGet()/nullSafeSet()
2011-02-25 16:29:09 -08:00
JPAV
98058c2aea
removed transitive=false for dependency
2011-02-25 11:41:52 -06:00
JPAV
79080f74d6
sync with master
2011-02-24 16:18:35 -06:00
JPAV
094bfc4def
Removed bin folders
2011-02-24 13:25:02 -06:00
Gail Badner
89eabb920d
HHH-5957 : Provide a way for dialects to override a SqlTypeDescriptor
2011-02-23 16:03:52 -08:00
JPAV
c71e3c4baf
Changed copyright notice from JBoss to Hibernate for new logging classes
2011-02-23 16:46:58 -06:00
Steve Ebersole
0c5526f724
HHH-5765 - Replaced ServiceRegistryHolder with ServiceRegistryBuilder
2011-02-23 16:27:31 -06:00
Steve Ebersole
e9ec8ef587
HHH-5943 - Make ServiceRegistry mutable
2011-02-23 15:57:41 -06:00
Steve Ebersole
8a530db254
HHH-5943 - Make ServiceRegistry mutable
2011-02-23 15:56:16 -06:00
Steve Ebersole
11d32ba69c
HHH-5943 - Make ServiceRegistry mutable
2011-02-23 15:48:02 -06:00
Emmanuel Bernard
c48e7df2a4
HHH-5916 Add test for Configuration.setPersisterClassProvider
2011-02-23 15:38:44 -06:00
Emmanuel Bernard
eb9a093262
HHH-5916 extract property name to instance logic into helper method
2011-02-23 15:38:44 -06:00
Emmanuel Bernard
4ffba763cf
HHH-5916 Use PersisterClassProvider in Binders
2011-02-23 15:33:53 -06:00
Emmanuel Bernard
55eb37ed52
HHH-5916 Expose PersisterClassProvider configuration
2011-02-23 15:33:21 -06:00
Emmanuel Bernard
337fd30256
HHH-5916 Add contract for custom default persister class provider
2011-02-23 15:32:25 -06:00
Steve Ebersole
7a6aab6d02
HHH-5928 - Clean up compilation warnings
2011-02-23 15:32:24 -06:00
Steve Ebersole
4fd609e41e
HHH-5904 - Deploy just testing artifacts from hibernate-core, not all tests
2011-02-23 15:30:23 -06:00
Strong Liu
7b9d7f2c25
HHH-5907 change to use autobox instead of create new object everytime to get minor improvement
2011-02-23 15:30:23 -06:00
Emmanuel Bernard
3db29f4ae1
HHH-5906 make AbstractEntityPersister#getPropertyUniqueness public
2011-02-23 15:30:22 -06:00
Steve Ebersole
dc59f6bdd1
HHH-5904 - Deploy just testing artifacts from hibernate-core, not all tests
2011-02-23 15:30:22 -06:00
Steve Ebersole
b2a7967624
HHH-5903 - Rename ServicesRegistry to ServiceRegistry
2011-02-23 15:30:22 -06:00
Steve Ebersole
2aa2dc0c59
HHH-5897 - Upgrade to Gradle 0.9.2
2011-02-23 15:20:40 -06:00
Gail Badner
4410a941e7
HHH-5704 HHH-5893 : Added tests for empty LOBs
2011-02-23 15:20:39 -06:00
Emmanuel Bernard
c6a407332a
HHH-5879 Expose getPropertyUniqueness from AbstractEntityPersister
2011-02-23 15:20:39 -06:00
Emmanuel Bernard
ab0e173f0e
HHH-5879 Open Core ComponentType metamodel
...
Add a getter to isKey
2011-02-23 15:20:39 -06:00
Emmanuel Bernard
de7ce17f35
HHH-5879 Improve AbstractEntityPersister to allow better subclassing in the loader area
...
Make use of a getLoader() getter which is protected
2011-02-23 15:20:39 -06:00
Emmanuel Bernard
f93581115e
HHH-5879 Make property protected for use by the OGM persister
2011-02-23 15:20:38 -06:00
Emmanuel Bernard
11c2537526
HHH-5879 expose getPropertyColumnUpdateable getPropertyColumnInsertable
2011-02-23 15:20:38 -06:00
Sanne Grinovero
9d3b6bbb1d
HHH-5880 needs to use classifier "tests" not "test"
2011-02-23 15:20:00 -06:00
Hardy Ferentschik
d0ef75f1ca
HHH-5880 Changed gradle build for for to push testing jar
2011-02-23 15:20:00 -06:00
Gail Badner
d1515a2911
HHH-5126 : "in" expression and column-valued-input-parameter
2011-02-23 15:18:43 -06:00
Steve Ebersole
4aa9cbe5b7
HHH-5823 - Poor multithread performance in UpdateTimestampsCache class
2011-02-23 15:17:28 -06:00
Steve Ebersole
ddbeaf5625
HHH-5824 - Poor multithread performance in SessionFactoryImpl.getQueryCache method
2011-02-23 15:08:14 -06:00
Steve Ebersole
144dde0080
HHH-5550 - Hibernate.createBlob() fails when used in current_session_context_class=thread mode
2011-02-23 15:05:11 -06:00
Steve Ebersole
7c3aafb7c2
HHH-5853: Problem loading cachable collections defined with a property-ref key with a versioned owner
2011-02-23 15:02:22 -06:00
Sanne Grinovero
2641842ba9
HHH-5843 - Avoid useless branches during HQL parsing when trace logging is disabled
2011-02-23 13:04:19 -06:00
JPAV
19bc3ba7fc
Modified infinispan module's build to exclude older version of jboss-logging library
2011-02-22 16:28:42 -06:00
Steve Ebersole
39d2d53968
HHH-5765 - Replaced ServiceRegistryHolder with ServiceRegistryBuilder
2011-02-21 23:41:17 -06:00
Steve Ebersole
3ba07b3f18
HHH-5943 - Make ServiceRegistry mutable
2011-02-21 22:18:17 -06:00
Steve Ebersole
2a64bcf9a7
HHH-5943 - Make ServiceRegistry mutable
2011-02-21 21:46:54 -06:00
Steve Ebersole
f53a6c708a
HHH-5943 - Make ServiceRegistry mutable
2011-02-21 17:31:40 -06:00
JPAV
ece77365dc
Updated to work with latest releases of jboss-logging and jboss-logging-tools
2011-02-16 16:14:27 -06:00
Emmanuel Bernard
ea9b756738
HHH-5916 Add test for Configuration.setPersisterClassProvider
2011-02-14 19:20:20 +01:00
Emmanuel Bernard
e18799b036
HHH-5916 Use PersisterClassProvider in Binders
2011-02-14 19:20:19 +01:00
Emmanuel Bernard
d7c48d779c
HHH-5916 Expose PersisterClassProvider configuration
2011-02-14 19:20:19 +01:00
Emmanuel Bernard
cd4b49a802
HHH-5916 Add contract for custom default persister class provider
2011-02-14 19:20:19 +01:00
Steve Ebersole
f7c3091381
HHH-5928 - Clean up compilation warnings
2011-02-14 09:29:05 -06:00
Steve Ebersole
3ba79384f0
HHH-5904 - Deploy just testing artifacts from hibernate-core, not all tests
2011-02-10 09:45:28 -06:00
Steve Ebersole
ac27759f2e
Merge branch 'master' of github.com:hibernate/hibernate-core
2011-02-10 09:41:34 -06:00
JPAV
c7f09e5130
Attempt to compile twice, once only for annotations, then for everything else
2011-02-09 13:05:57 -06:00
Strong Liu
2a0309c3d0
HHH-5907 change to use autobox instead of create new object everytime to get minor improvement
2011-02-09 20:45:48 +08:00
Emmanuel Bernard
ab6860a3e8
HHH-5906 make AbstractEntityPersister#getPropertyUniqueness public
2011-02-09 10:30:35 +01:00
Steve Ebersole
ef301deadc
HHH-5904 - Deploy just testing artifacts from hibernate-core, not all tests
2011-02-08 14:27:57 -06:00
JPAV
acf89b9e68
Changes from requests at Hibernate meeting: message codes, use XXXf methods for debug and trace, use @Cause
2011-02-08 14:01:34 -06:00
JPAV
8c806d361d
Changes from requests at Hibernate meeting: message codes, use XXXf methods for debug and trace, use @Cause
2011-02-08 13:55:27 -06:00
Steve Ebersole
011d7e1114
HHH-5903 - Rename ServicesRegistry to ServiceRegistry
2011-02-08 11:27:27 -06:00
Steve Ebersole
2f8655e661
HHH-5897 - Upgrade to Gradle 0.9.2
2011-02-08 11:19:50 -06:00
Gail Badner
67c05ff9f5
HHH-5704 HHH-5893 : Added tests for empty LOBs
2011-02-07 13:56:41 -08:00
Emmanuel Bernard
224121aee1
HHH-5879 Expose getPropertyUniqueness from AbstractEntityPersister
2011-02-02 19:05:56 +01:00
Emmanuel Bernard
1ae42c886e
HHH-5879 Open Core ComponentType metamodel
...
Add a getter to isKey
2011-02-02 19:05:56 +01:00
Emmanuel Bernard
ffd659ff77
HHH-5879 Improve AbstractEntityPersister to allow better subclassing in the loader area
...
Make use of a getLoader() getter which is protected
2011-02-02 19:05:56 +01:00
Emmanuel Bernard
efabd6fa49
HHH-5879 Make property protected for use by the OGM persister
2011-02-02 19:05:56 +01:00
Emmanuel Bernard
83196824d7
HHH-5879 expose getPropertyColumnUpdateable getPropertyColumnInsertable
2011-02-02 19:05:56 +01:00
Sanne Grinovero
9f992cd6d0
HHH-5880 needs to use classifier "tests" not "test"
2011-01-28 16:36:19 -06:00
Hardy Ferentschik
79e9a77d4e
HHH-5880 Changed gradle build for for to push testing jar
2011-01-28 15:49:39 -06:00
JPAV
c26763c2e9
Added used of @Cause to log messages
2011-01-25 14:54:39 -06:00
Gail Badner
0013a90d20
HHH-5126 : "in" expression and column-valued-input-parameter
2011-01-21 13:05:54 -08:00
Steve Ebersole
ccd23dbd3d
HHH-5823 - Poor multithread performance in UpdateTimestampsCache class
2011-01-21 12:39:25 -06:00
Steve Ebersole
4d6a68c2d0
HHH-5824 - Poor multithread performance in SessionFactoryImpl.getQueryCache method
2011-01-21 12:10:18 -06:00
Steve Ebersole
0c48de6474
HHH-5550 - Hibernate.createBlob() fails when used in current_session_context_class=thread mode
2011-01-21 11:07:59 -06:00
Steve Ebersole
e79eae88bc
HHH-5853: Problem loading cachable collections defined with a property-ref key with a versioned owner
2011-01-20 15:12:52 -06:00
Hardy Ferentschik
cb7cd71fdf
HHH-5843 Adding a log.isTraceEnabled call before the actual log call
...
Not really related to the HQL parsing, but it is also a small logging performance change
2011-01-19 10:05:37 +01:00
Hardy Ferentschik
3bf6625ab1
Merge branch 'HHH-5843' of git://github.com/Sanne/hibernate-core into Sanne-HHH-5843
2011-01-19 09:27:21 +01:00
JPAV
af24178145
Give each project a single logger
2011-01-18 16:01:00 -06:00
JPAV
3712e1ad7e
Give each project a single logger
2011-01-18 16:00:59 -06:00
JPAV
9b7eb48b55
Replaced references to slf4j with references to new jboss.logging.Logger implementations and i18n'd where it was clear how to do so.
2011-01-18 15:35:50 -06:00
JPAV
a9b1425f3f
Replaced references to slf4j with references to new jboss.logging.Logger implementations and i18n'd where it was clear how to do so.
2011-01-18 15:35:49 -06:00
Gail Badner
126592a55d
HHH-5695 : Test case for derived ID with bidirectional one-to-one
2011-01-17 13:50:39 -08:00
Gail Badner
a6d19f257b
Merge branch 'master' of github.com:hibernate/hibernate-core
2011-01-17 12:26:43 -08:00
Gail Badner
15cc1e7493
HHH-5359 : Derived entity use case fails when the association is bidirectional
2011-01-17 12:25:16 -08:00
Sanne Grinovero
adbe3920f1
HHH-5843 - Avoid useless branches during HQL parsing when trace logging is disabled
2011-01-14 16:31:01 +00:00
Emmanuel Bernard
60857d3966
HHH-5280 Fix excessive caching of the owner
...
An entity can have more than one owner
(eg 2 unidirectional collections pointing to same object)
Make the cache filter by type
2011-01-14 16:03:44 +01:00
Emmanuel Bernard
0600527a6b
HHH-5280 Add test failing on multiple owners
2011-01-14 15:52:43 +01:00
Gail Badner
1c158b0bb7
HHH-5826 : SerializationHelper.resolveClass() never tries loader3
2011-01-11 17:21:08 -08:00
Gail Badner
ca057ccb4c
HHH-5717 : LockOptions not set correctly for queries
2011-01-07 16:35:26 -08:00
Gail Badner
35bf5300c3
Merge branch 'HHH-5811-ByteArrayLob'
2011-01-04 12:59:24 -08:00
Gail Badner
a45ada43e2
HHH-5811 : flush causes update on unchanged Byte[] field
2011-01-04 12:58:09 -08:00
Emmanuel Bernard
20f8a8e2d3
HHH-5816 Expose list of modified properties in PostUpdateEvent
2011-01-04 15:45:02 +01:00
Hardy Ferentschik
dc91727742
HHH-5800 This test now also derives from HibernateTestCase. This way the test is aligned with the tests added for this issue.
2011-01-03 16:58:46 +01:00
Hardy Ferentschik
95c23b6f50
HHH-5800 Applying Hibernate code formatting style
2011-01-03 16:55:30 +01:00
davidmc24
bde29a52d2
HHH-5800 Fix override handling for associations as per chapter 12 of the JPA 2.0 specification.
...
Some subelements should merge with Java annotations in some contexts (such as directly within an entity) but not in others (such as in an association mapping). The methods to handle these elements were enhanced to be aware of these two different modes through the use of a boolean flag.
2011-01-01 18:34:11 -05:00
davidmc24
99c4ecef99
HHH-5800 Add tests for element-collection orm XML support
2011-01-01 14:46:49 -05:00
davidmc24
af1e078f83
HHH-5800 Add tests for many-to-many orm XML support
2011-01-01 14:46:48 -05:00
davidmc24
33d9cbaa76
HHH-5800 Add tests for one-to-one orm XML support
2011-01-01 14:46:48 -05:00
davidmc24
e0b06e8a57
Attempt to match Hibernate code conventions
2011-01-01 14:46:47 -05:00
davidmc24
6de52c2db3
HHH-5800 Add tests for one-to-many orm XML support
2011-01-01 14:46:47 -05:00
davidmc24
9bdd76b0e7
HHH-5800 Add tests and fixes for many-to-one orm XML support
2011-01-01 14:46:47 -05:00
Strong Liu
f97d02c61b
HHH-5806 mapping static inner class causes hsqldb tests fails
2010-12-23 17:54:37 +08:00
Gail Badner
bf6bd51c7e
HHH-5325 : Improvements to test suite (fixes HQLDB 2.0 failures)
2010-12-20 17:27:10 -08:00
Gail Badner
262f25311d
HHH-5791 : NPE merging transient entity with non-nullable property set to null with delayed insert if check_nullability set to false
2010-12-17 16:10:33 -08:00
Gail Badner
66f8e90e7c
Merge branch 'HHH-5778-batch'
2010-12-16 23:59:10 -08:00
Gail Badner
1f0c74cb5e
HHH-5778 : Wire in new batch code
2010-12-16 17:36:18 -08:00
Hardy Ferentschik
e5da3bf149
HHH-5794 Adding/Updating license headers
2010-12-16 15:33:00 +01:00
David M. Carr
66f7018b9d
Remove extraneous comments from test entity.
2010-12-16 15:33:00 +01:00
David M. Carr
48f5b51ca7
More changeset cleanup.
2010-12-16 15:33:00 +01:00
David M. Carr
5cbffa051d
Tidy up the changeset a little.
2010-12-16 15:33:00 +01:00
David M. Carr
13f25fe72f
Enhance the test to cover additional mapping elements, and implement support for them.
2010-12-16 15:32:59 +01:00
David M. Carr
363aa25c55
Add support for map-key-class in orm.xml
2010-12-16 15:32:59 +01:00
dcarr
7d884f4bb6
Enhance Ejb3XmlTest to try to persist an entity mapped using <map-key-class> in the orm.xml
2010-12-16 15:32:59 +01:00
Gail Badner
7262276fa9
HHH-5778 : Wire in new batch code
2010-12-15 12:36:23 -08:00
Strong Liu
4c7983151c
HHH-5727 Collection member declaration not handling optional AS in HQL.
2010-12-14 04:53:15 +08:00
Emmanuel Bernard
55e27c3825
Fix minor typos in the Dialect JavaDocs
2010-12-10 14:19:20 +01:00
Gail Badner
e7daff9d93
HHH-5782 HHH-5783 : Remove "throws SQLException" from ConnectionManager methods; ConnectionManager should set timeout
2010-12-09 20:23:08 -08:00
Gail Badner
b006a6c3c5
HHH-5765 : Refactor JDBCContext/ConnectionManager spi/impl and to use new proxies
2010-12-08 17:23:44 -08:00
Strong Liu
cc4055d50c
merge https://github.com/hibernate/hibernate-core/pull/20
2010-12-03 22:39:38 +08:00
Gail Badner
97fef96b98
HHH-5765 : Integrate LogicalConnection into ConnectionManager
2010-12-02 11:16:10 -08:00
Gail Badner
da1750881a
HHH-5765 : changed ConnectionManager.Callback to extend ConnectionObserver
2010-11-30 22:47:28 -08:00
Gail Badner
fda684a5a6
HHH-5765 : remove dialect and connection provider from Settings
2010-11-30 20:31:53 -08:00
Gail Badner
3ca8216c7c
HHH-5765 : Wire in SQLExceptionHelper for converting SQLExceptions
2010-11-30 18:50:34 -08:00
Gail Badner
91d444423b
HHH-5765 : Wire in dialect factory and resolvers from service registry
2010-11-30 14:31:30 -08:00
Gail Badner
88543c7a58
HHH-5765 : Wire in connection provider from service registry
2010-11-30 11:38:53 -08:00
Strong Liu
5aed6b19cb
HHH-5726 update test case
2010-11-29 18:11:44 +08:00
Strong Liu
915d6f9eea
update StandardDialectResolver to return correct dialect for ms sql server
2010-11-29 17:38:31 +08:00
Strong Liu
01dd9a44e5
Merge branch 'mssql2005' of https://github.com/valotas/hibernate-core into valotas-mssql2005
2010-11-29 16:57:03 +08:00
Yoryos Valotasios
38cd2fe25c
SQLServer2005Dialect: Made some comments more specific
2010-11-23 00:46:48 +02:00
Yoryos Valotasios
2ae06c9469
SQLServer2005Dialect: removed useless commented code
2010-11-23 00:44:02 +02:00
Yoryos Valotasios
f6a349bcb8
SQLServer2005Dialect: Moved the small methods on top of the class
2010-11-23 00:25:14 +02:00
Yoryos Valotasios
48239bbbcc
Added some comments
2010-11-23 00:22:39 +02:00
Yoryos Valotasios
b47dc5aeda
SQLServer2005Dialect: modifications in order to support variable limit
2010-11-23 00:19:22 +02:00
Yoryos Valotasios
11a98623e5
Dialect: Improved exception messages by adding the dialect class name
2010-11-15 00:58:57 +02:00
Yoryos Valotasios
71cef3831d
SQLServer2005Dialect: Added @Override to the supportsVariableLimit method
2010-11-15 00:33:09 +02:00
Yoryos Valotasios
571318e6e4
Added comments. The dialect should also fix HHH-3936
2010-11-15 00:12:10 +02:00
Yoryos Valotasios
ceba976e57
SQLServer2008Dialect should extend SQLServer2005Dialect
2010-11-14 23:56:33 +02:00
Yoryos Valotasios
2964b975ef
HHH-3965: registered some more columntypes as varchar(max) and varbinary(max)
2010-11-14 23:55:06 +02:00
Yoryos Valotasios
c9833f3eaa
HHH-3965 fix, make use of varbinary(max) and varchar(max)
2010-11-14 23:51:15 +02:00
Yoryos Valotasios
9e2902807c
Make use of generics for the Dialect and TypeNames class
2010-11-14 23:31:20 +02:00
Steve Ebersole
5d8c5d371b
Merge branch 'HHH-5709' of https://github.com/tblachowicz/hibernate-core into tblachowicz-HHH-5709
2010-11-11 11:41:38 -06:00
Hardy Ferentschik
ce56969173
HV-361 Taking into account that applyDDL can be called multiple times. Adding comment that @Range annotation is automatically taken care of, because it is a composing constraint of @Min and @Max
2010-11-11 17:31:46 +01:00
Hardy Ferentschik
ff47006731
HV-361 Adding test for @Range constraint
2010-11-11 17:31:46 +01:00
Hardy Ferentschik
0cb3e66eef
HV-361 Adding test entity for @Range constraint
2010-11-11 17:31:46 +01:00
Hardy Ferentschik
c07ee1a4c0
HV-361 Making sure that multiple column checks are properly added
2010-11-11 17:31:46 +01:00
Hardy Ferentschik
c22a6be533
HV-361 Changing existing tests to use @RequiresDialect(DialectChecks.SupportColumnCheck)
2010-11-11 17:31:46 +01:00
Hardy Ferentschik
d24a06ee8d
HV-361 Formatting and adding/updating copyrights
2010-11-11 17:31:46 +01:00
Strong Liu
97f8ceac9b
HHH-5727 Collection member declaration not handling optional AS in HQL.
2010-11-11 19:09:50 +08:00
Yoryos Valotasios
ae271db9ba
renamed the old SQLServerDialect unit tests to SQLServer2005DialectTestCase
2010-11-10 22:06:42 +02:00
Yoryos Valotasios
e3ad6c881e
SQLServer2005Dialect: supports sql server 2005 but not 2000
2010-11-10 22:05:23 +02:00
Yoryos Valotasios
2ec009440e
SQLServerDialect fallback to the pre HHH-2655 one
2010-11-10 22:03:47 +02:00
Strong Liu
6e565102b5
HHH-5715 revert the change made in hibernate.properties, default is H2
2010-11-10 22:58:30 +08:00
Emmanuel Bernard
42261a61df
HHH-5724 display the constraint failures on Bean Validation exception
2010-11-10 13:12:07 +01:00
Tomasz Blachowicz
fb26f4c1a0
HHH-5709: New property of PersistentClass finally renamed to jpaEntityName
2010-11-09 09:53:02 +00:00
Yoryos Valotasios
69ed7a9b88
Make use of better method names
2010-11-06 15:39:44 +02:00
Yoryos Valotasios
d390f85544
SQLServerDialect: Added comments and refactored some varibles
2010-11-06 15:34:35 +02:00
Yoryos Valotasios
b9f84044e6
removed useless wrong assert statement
2010-11-06 15:33:45 +02:00
Yoryos Valotasios
74c9ec6bda
Modified the SQLServerDialect in order to replace the distinct keyword with a groub by clause
2010-11-06 14:59:53 +02:00
Yoryos Valotasios
55c822c56e
HHH-5715 test case
2010-11-05 11:23:08 +02:00
Tomasz Blachowicz
f29fab99a6
HHH-5709: New property added to PersistentClass to hold the name of the entity compliant with JSR-317 spec. Used by JPA2 metamodel.
2010-11-03 14:10:58 +00:00
Strong Liu
ba040a3378
HHH-5700 incorrect test logic of org.hibernate.test.readonly.ReadOnlyCriteriaQueryTest
2010-11-02 20:47:37 +08:00
Strong Liu
528b652d07
HHH-2655 ROW_NUMBER for Paging
2010-11-02 20:39:03 +08:00
Steve Ebersole
61060d13a9
HHH-5706 - Incorrect accounting for 1-based LOB offsets
2010-11-01 13:57:29 -05:00
Strong Liu
a3a732b494
HHH-2655: make use of the ROW_NUMBER function
2010-11-01 12:20:03 +08:00
Yoryos Valotasios
9b32e9462a
HHH-2655: bug fix: row_number() function is not zero and so we must increament the given limit and offset by one
2010-10-30 00:04:51 +03:00
Yoryos Valotasios
895e1bf716
HHH-2655: Modified the SQLServer2008Dialect to make use of the ROW_NUMBER function for queries with limit
2010-10-28 21:36:16 +03:00
Strong Liu
ca009f5340
HHH-3873 DB2Dialect.getLimitString raise DB2 error message when called with limit=0
2010-10-28 16:22:05 +08:00
Strong Liu
98f41bd6a8
HHH-5168 DB2Dialect generates CROSS JOINs which aren't supported
2010-10-26 15:12:14 +08:00
Steve Ebersole
40cd2bcd02
HHH-5662 - Import the initial work
2010-10-15 15:35:30 -05:00
Steve Ebersole
6ea31ce779
HHH-5662 - Import the initial work
2010-10-15 13:56:33 -05:00
Steve Ebersole
960326510f
HHH-5662 - Import the initial work
2010-10-14 16:37:14 -05:00
Steve Ebersole
aec8d1a742
HHH-5658 - Better .gitignore
2010-10-14 09:33:20 -05:00
Gail Badner
8575247aaf
HHH-5638 : move o.h.engine.jdbc.proxy to o.h.engine.jdbc.internal.proxy
2010-10-13 16:04:04 -07:00
Gail Badner
7f91fb73d5
HHH-5656 : Import ServicesRegistry bootstrap code and service tests
2010-10-13 15:04:05 -07:00
Gail Badner
d4bf11d8ba
HHH-5641 : Import JtaPlatform services
2010-10-13 13:16:25 -07:00
Gail Badner
a23796c92d
HHH-5618 : Support legacy connection providers
2010-10-12 15:20:46 -07:00
Gail Badner
ee6bde2957
change h2 to 1.2.140; add DVCC=TRUE to TestingDatabaseInfo
2010-10-12 13:20:06 -07:00
Steve Ebersole
2443fede65
HHH-5616 - Switch to Gradle for builds .. incorrect .gitignore
2010-10-11 17:43:42 -05:00
Steve Ebersole
b5f4f8aebc
HHH-5616 - Switch to Gradle for builds
2010-10-11 16:42:44 -05:00
Steve Ebersole
248ef9771f
HHH-5616 - Switch to Gradle for builds .. gradlew
2010-10-11 14:41:49 -05:00
Steve Ebersole
7ce80c9c2d
HHH-5616 - Switch to Gradle for builds .. IntelliJ
2010-10-11 14:41:49 -05:00
Steve Ebersole
901513ed7c
HHH-5616 - Switch to Gradle for builds .. uploads
2010-10-11 14:41:49 -05:00
Steve Ebersole
9134d89dc0
HHH-5616 - Switch to Gradle for builds
2010-10-11 14:41:48 -05:00
Steve Ebersole
f476da02ee
HHH-5616 - Switch to Gradle for builds
2010-10-11 14:41:48 -05:00
Steve Ebersole
5d12ea8287
HHH-5616 - Switch to Gradle for builds
2010-10-11 14:41:47 -05:00
Steve Ebersole
737ab3b672
HHH-5616 - Switch to Gradle for builds ... working hibernate-core
2010-10-11 14:41:47 -05:00
Steve Ebersole
93bc4272df
HHH-5616 - Switch to Gradle for builds
2010-10-11 14:41:47 -05:00
Steve Ebersole
34c2839dcc
HHH-5616 - Switch to Gradle for builds
2010-10-11 14:41:47 -05:00