✅ Eugene lint report
Script name: examples/E1/good/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 E123to the SQL statement. - By passing 
--ignore E123on the command line. 
✅ Statement number 1
-- 1.sql
create table authors(
    id integer generated always as identity
        primary key,
    name text
)
✅ Eugene lint report
Script name: examples/E1/good/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 E123to the SQL statement. - By passing 
--ignore E123on the command line. 
✅ Statement number 1
-- 2.sql
set local lock_timeout = '2s'
✅ Statement number 2
alter table authors
    add constraint name_not_null
        check (name is not null) not valid
✅ Eugene lint report
Script name: examples/E1/good/3.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 E123to the SQL statement. - By passing 
--ignore E123on the command line. 
✅ Statement number 1
-- 3.sql
set local lock_timeout = '2s'
✅ Statement number 2
alter table authors
    validate constraint name_not_null