eugene 0.8.3

Careful with That Lock, Eugene
Documentation
## ✅ Eugene lint report

Script name: `examples/E9/bad/1.sql`

This is a human readable SQL lint report generated by [eugene](https://github.com/kaaveland/eugene).
Keep in mind that lint rules can be ignored in the following two ways:

  1. By appending comment directives like `-- eugene: ignore E123` to the SQL statement.
  2. By passing `--ignore E123` on the command line.

### ✅ Statement number 1

```sql
-- 1.sql
create table authors (
    id integer generated always as identity
        primary key,
    name text not null
)
```

## ❌ Eugene lint report

Script name: `examples/E9/bad/2.sql`

This is a human readable SQL lint report generated by [eugene](https://github.com/kaaveland/eugene).
Keep in mind that lint rules can be ignored in the following two ways:

  1. By appending comment directives like `-- eugene: ignore E123` to the SQL statement.
  2. By passing `--ignore E123` on the command line.

### ❌ Statement number 1

```sql
-- 2.sql
alter table authors add column email text
```

#### Triggered rules

##### `E9`: [Taking dangerous lock without timeout]https://kaveland.no/eugene/hints/E9/

Statement takes lock on `public.authors`, but does not set a lock timeout.