rspec/rules/S1499/rule.adoc

26 lines
354 B
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
2020-06-30 12:47:33 +02:00
include::description.adoc[]
=== Noncompliant code example
[source,text]
----
SELECT *
FROM persons
INTO newyorkers
WHERE city = 'NEW YORK'.
----
=== Compliant solution
[source,text]
----
SELECT firstname, lastname
FROM persons
INTO newyorkers
WHERE city = 'NEW YORK'.
----
2020-06-30 12:47:33 +02:00