This is an automated email from the ASF dual-hosted git repository.

struberg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git

commit 037a2dc4c0e4d09487455d0f9b3848db2d1caec7
Author: Mark Struberg <strub...@apache.org>
AuthorDate: Wed Feb 6 10:20:19 2019 +0100

    OPENJPA-2775 fix hsql metadata handling
---
 .../src/main/java/org/apache/openjpa/jdbc/sql/HSQLDictionary.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/HSQLDictionary.java 
b/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/HSQLDictionary.java
index 1369957..8c4f23c 100644
--- a/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/HSQLDictionary.java
+++ b/openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql/HSQLDictionary.java
@@ -82,8 +82,8 @@ public class HSQLDictionary extends DBDictionary {
 
         doubleTypeName = "NUMERIC";
 
-        supportsNullTableForGetPrimaryKeys = true;
-        supportsNullTableForGetIndexInfo = true;
+        supportsNullTableForGetPrimaryKeys = false;
+        supportsNullTableForGetIndexInfo = false;
 
         requiresCastForMathFunctions = true;
         requiresCastForComparisons = true;

Reply via email to