All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.plsqlopen.rules.plsql.DuplicatedValueInIn.html Maven / Gradle / Ivy

The newest version!

Duplicated values in an IN condition can be either a copy/paste error and therefore a bug, or it is simply wasted code, and should be simplified.

Noncompliant Code Example

if value in (a, a, b) then ...

Compliant Solution

if value in (a, b) then ...




© 2015 - 2024 Weber Informatics LLC | Privacy Policy