SQL

SQL

Made by DeepSource

Unnecessary trailing whitespace SQL-L001

Style
Minor

Trailing whitespace is any spaces or tabs after the last non-whitespace character on the line until the newline.

Bad practice

Convention: Here, the • character represents a space.

SELECT
    a
FROM foo••

Recommended

Remove trailing spaces.

SELECT
    a
FROM foo