rspec/rules/S122/tsql/rule.adoc
2020-06-30 10:16:44 +02:00

15 lines
210 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
IF @x > 0 SET @x = 0; IF @y > 0 SET @y = 0; -- Noncompliant
----
== Compliant Solution
----
IF @x > 0 SET @x = 0;
IF @y > 0 SET @y = 0;
----