Skip to content

Commit

Permalink
Change supportsLikeEscapeClause to check for AzureDW (#2092)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffery-Wasty committed Mar 24, 2023
1 parent 178819d commit b0a7c6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1986,7 +1986,7 @@ public boolean supportsIntegrityEnhancementFacility() throws SQLServerException
@Override
public boolean supportsLikeEscapeClause() throws SQLServerException {
checkClosed();
return true;
return !connection.isAzureDW();
}

@Override
Expand Down

0 comments on commit b0a7c6f

Please sign in to comment.