rspec/rules/S1502/abap/rule.adoc

13 lines
316 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
``++SQL COUNT(..), MIN(..), MAX(..), SUM(..), AVG(..)++`` aggregate functions cause the SAP table buffer to be bypassed, so the use of these functions can lead to performance issues.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
SELECT COUNT(*)
FROM persons
INTO count
WHERE city = 'NEW YORK'.
----