Hi,
These test failures are caused by the fix for
https://hibernate.atlassian.net/browse/HHH-13104. There is some discussion in
the ticket around how to best fix the test failures.
Vlad has already opened a PR:
https://github.com/hibernate/hibernate-orm/pull/2705
Best,
Jonathan
-Origina
most likely go with multi-release
JARs. If everything goes as planned we’ll also publish the driver on Maven
Central soon.
- Jonathan
From: Steve Ebersole [mailto:st...@hibernate.org]
Sent: Tuesday, March 13, 2018 4:21 PM
To: Bregler, Jonathan
Cc: Sanne Grinovero ; hibernate-dev
M.
- http://openjdk.java.net/jeps/238
Thanks,
Sanne
On 12 March 2018 at 15:27, Bregler, Jonathan wrote:
> Hi,
>
> in a recent version of the HANA JDBC driver the new JDBC 4.3 features that
> came with Java 9 have been implemented. The driver itself is still compiled
> for Java 7 (j
Hi,
in a recent version of the HANA JDBC driver the new JDBC 4.3 features that came
with Java 9 have been implemented. The driver itself is still compiled for Java
7 (javac -target 1.7). So the driver should also be usable with a JVM 7 or 8.
This works as expected until Java reflection is used
Ok, thanks. For some reason I missed the Jira issue.
- Jonathan
From: Guillaume Smet [mailto:guillaume.s...@gmail.com]
Sent: Friday, February 16, 2018 11:39 AM
To: Vlad Mihalcea
Cc: Bregler, Jonathan ; hibernate-dev@lists.jboss.org
Subject: Re: [hibernate-dev] Empty IN list support
See this
Hi,
HANA doesn't support empty IN lists, so executing an HQL query that gets
transformed into a SQL query with an empty IN list results in a SQL parser
error on the database side. I noticed that the Dialect class already defines a
method called "supportsEmptyInList()" which according to the Jav