We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74ead94 commit 078b5faCopy full SHA for 078b5fa
src/sonar-sql-plugin/src/main/java/org/antlr/sql/dialects/rules/BaseRules.java
@@ -428,7 +428,7 @@ public Rule getWhereWithOrVsUnionRule() {
428
r.setDebtRemediationFunctionCoefficient("3min");
429
r.setName("OR verb is used in a WHERE clause");
430
RuleImplementation rImpl = new RuleImplementation();
431
- rImpl.setRuleViolationMessage("Consider using UNION ALL instead of OR in a WHERE clause.");
+ rImpl.setRuleViolationMessage("Consider using UNION/UNION ALL instead of OR in a WHERE clause.");
432
r.setRuleImplementation(rImpl);
433
rImpl.getCompliantRulesCodeExamples().getRuleCodeExample()
434
.add("SELECT name, surname, count from dbo.test where name = 'or' and surname = 'TestOR';");
0 commit comments