✅ Eugene lint report
Script name: examples/W12/bad/1.sql
This is a human readable SQL lint report generated by eugene. Keep in mind that lint rules can be ignored in the following two ways:
- By appending comment directives like
-- eugene: ignore E123
to the SQL statement. - By passing
--ignore E123
on the command line.
✅ Statement number 1
-- 1.sql
create table authors(
id integer generated always as identity
primary key,
name text,
email text
)
❌ Eugene lint report
Script name: examples/W12/bad/2.sql
This is a human readable SQL lint report generated by eugene. Keep in mind that lint rules can be ignored in the following two ways:
- By appending comment directives like
-- eugene: ignore E123
to the SQL statement. - By passing
--ignore E123
on the command line.
✅ Statement number 1
-- 2.sql
set lock_timeout = '2s'
✅ Statement number 2
alter table authors
alter column name set not null
❌ Statement number 3
-- eugene: ignore E2, E4
alter table authors
alter column email set not null
Triggered rules
W12
: Multiple ALTER TABLE
statements where one will do
Multiple ALTER TABLE
statements on public.authors
. Combine them into a single statement to avoid scanning the table multiple times..