rspec/rules/S2070/tsql/rule.adoc

23 lines
382 B
Plaintext
Raw Normal View History

2020-06-30 12:48:07 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
SELECT HASHBYTES('SHA1', MyColumn) FROM dbo.MyTable;
----
== Compliant Solution
----
SELECT HASHBYTES('SHA2_256', MyColumn) FROM dbo.MyTable;
----
include::../see.adoc[]
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::rspecator-view[]