rspec/rules/S122/tsql/rule.adoc

15 lines
210 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
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;
----