File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed
hibernate-community-dialects/src/main/java/org/hibernate/community/dialect
hibernate-core/src/main/java/org/hibernate/dialect Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -1484,4 +1484,9 @@ public boolean supportsRowValueConstructorSyntaxInInList() {
1484
1484
return false ;
1485
1485
}
1486
1486
1487
+ @ Override
1488
+ public boolean supportsRowValueConstructorSyntaxInInSubQuery () {
1489
+ return true ;
1490
+ }
1491
+
1487
1492
}
Original file line number Diff line number Diff line change @@ -909,6 +909,7 @@ public boolean supportsArrayConstructor() {
909
909
910
910
@ Override
911
911
public boolean supportsRowValueConstructorSyntax () {
912
+ // It's supported but not usable due to a bug: https://sourceforge.net/p/hsqldb/bugs/1714/
912
913
return false ;
913
914
}
914
915
@@ -920,11 +921,13 @@ public boolean supportsWithClauseInSubquery() {
920
921
921
922
@ Override
922
923
public boolean supportsRowValueConstructorSyntaxInQuantifiedPredicates () {
924
+ // It's supported but not usable due to a bug: https://sourceforge.net/p/hsqldb/bugs/1714/
923
925
return false ;
924
926
}
925
927
926
928
@ Override
927
929
public boolean supportsRowValueConstructorSyntaxInInList () {
930
+ // It's supported but not usable due to a bug: https://sourceforge.net/p/hsqldb/bugs/1714/
928
931
return false ;
929
932
}
930
933
Original file line number Diff line number Diff line change @@ -1317,4 +1317,9 @@ public boolean supportsRowValueConstructorSyntaxInInList() {
1317
1317
return false ;
1318
1318
}
1319
1319
1320
+ @ Override
1321
+ public boolean supportsRowValueConstructorSyntaxInInSubQuery () {
1322
+ return true ;
1323
+ }
1324
+
1320
1325
}
Original file line number Diff line number Diff line change @@ -747,6 +747,7 @@ public boolean supportsArrayConstructor() {
747
747
748
748
@ Override
749
749
public boolean supportsRowValueConstructorSyntax () {
750
+ // It's supported but not usable due to a bug: https://sourceforge.net/p/hsqldb/bugs/1714/
750
751
return false ;
751
752
}
752
753
@@ -758,11 +759,13 @@ public boolean supportsWithClauseInSubquery() {
758
759
759
760
@ Override
760
761
public boolean supportsRowValueConstructorSyntaxInQuantifiedPredicates () {
762
+ // It's supported but not usable due to a bug: https://sourceforge.net/p/hsqldb/bugs/1714/
761
763
return false ;
762
764
}
763
765
764
766
@ Override
765
767
public boolean supportsRowValueConstructorSyntaxInInList () {
768
+ // It's supported but not usable due to a bug: https://sourceforge.net/p/hsqldb/bugs/1714/
766
769
return false ;
767
770
}
768
771
You can’t perform that action at this time.
0 commit comments