Skip to content

Commit d339a25

Browse files
divangprrvchr
andauthored
Updated the supportsIntegrityEnhancementFacility() method
Updated the supportsIntegrityEnhancementFacility() method in SQLServerDatabaseMetaData.java to return true instead of false. Co-authored-by: prrvchr <[email protected]>
1 parent 9f17ea4 commit d339a25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/microsoft/sqlserver/jdbc/SQLServerDatabaseMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2255,7 +2255,7 @@ public boolean supportsGroupByUnrelated() throws SQLServerException {
22552255
@Override
22562256
public boolean supportsIntegrityEnhancementFacility() throws SQLServerException {
22572257
checkClosed();
2258-
return false;
2258+
return true;
22592259
}
22602260

22612261
@Override

0 commit comments

Comments
 (0)