Skip to main content

Linter for PostgreSQL migrations

Project description

squawk npm

Linter for Postgres migrations & SQL

Quick Start | Playground | Rules Documentation | GitHub Action | DIY GitHub Integration

Why?

Prevent unexpected downtime caused by database migrations and encourage best practices around Postgres schemas and SQL.

Install

npm install -g squawk-cli

# or via PYPI
pip install squawk-cli

# or install binaries directly via the releases page
https://github.com/sbdchd/squawk/releases

Or via Docker

You can also run Squawk using Docker. The official image is available on GitHub Container Registry.

# Assuming you want to check sql files in the current directory
docker run --rm -v $(pwd):/data ghcr.io/sbdchd/squawk:latest *.sql

Or via the Playground

Use the WASM powered playground to check your SQL locally in the browser!

https://play.squawkhq.com

Or via VSCode

https://marketplace.visualstudio.com/items?itemName=sbdchd.squawk

Usage

 squawk example.sql
warning[prefer-bigint-over-int]: Using 32-bit integer fields can result in hitting the max `int` limit.
  ╭▸ example.sql:6:10
  6      "id" serial NOT NULL PRIMARY KEY,
            ━━━━━━
     help: Use 64-bit integer values instead to prevent hitting this limit.
  ╭╴
6      "id" bigserial NOT NULL PRIMARY KEY,
  ╰╴         +++
warning[prefer-identity]: Serial types make schema, dependency, and permission management difficult.
  ╭▸ example.sql:6:10
  6      "id" serial NOT NULL PRIMARY KEY,
            ━━━━━━
     help: Use an `IDENTITY` column instead.
  ╭╴
6 -     "id" serial NOT NULL PRIMARY KEY,
6 +     "id" integer generated by default as identity NOT NULL PRIMARY KEY,
  ╰╴
warning[prefer-text-field]: Changing the size of a `varchar` field requires an `ACCESS EXCLUSIVE` lock, that will prevent all reads and writes to the table.
  ╭▸ example.sql:7:13
  7      "alpha" varchar(100) NOT NULL
               ━━━━━━━━━━━━
     help: Use a `TEXT` field with a `CHECK` constraint.
  ╭╴
7 -     "alpha" varchar(100) NOT NULL
7 +     "alpha" text NOT NULL
  ╰╴
warning[require-concurrent-index-creation]: During normal index creation, table updates are blocked, but reads are still allowed.
   ╭▸ example.sql:10:1
   10  CREATE INDEX "field_name_idx" ON "table_name" ("field_name");
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       help: Use `concurrently` to avoid blocking writes.
   ╭╴
10  CREATE INDEX concurrently "field_name_idx" ON "table_name" ("field_name");
   ╰╴             ++++++++++++
warning[constraint-missing-not-valid]: By default new constraints require a table scan and block writes to the table while that scan occurs.
   ╭▸ example.sql:12:24
   12  ALTER TABLE table_name ADD CONSTRAINT field_name_constraint UNIQUE (field_name);
                           ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       help: Use `NOT VALID` with a later `VALIDATE CONSTRAINT` call.
warning[disallowed-unique-constraint]: Adding a `UNIQUE` constraint requires an `ACCESS EXCLUSIVE` lock which blocks reads and writes to the table while the index is built.
   ╭▸ example.sql:12:28
   12  ALTER TABLE table_name ADD CONSTRAINT field_name_constraint UNIQUE (field_name);
                               ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       help: Create an index `CONCURRENTLY` and create the constraint using the index.

Find detailed examples and solutions for each rule at https://squawkhq.com/docs/rules
Found 6 issues in 1 file (checked 1 source file)

squawk --help

squawk
Find problems in your SQL

USAGE:
    squawk [FLAGS] [OPTIONS] [path]... [SUBCOMMAND]

FLAGS:
        --assume-in-transaction
            Assume that a transaction will wrap each SQL file when run by a migration tool

            Use --no-assume-in-transaction to override this setting in any config file that exists
    -h, --help
            Prints help information

    -V, --version
            Prints version information

        --verbose
            Enable debug logging output


OPTIONS:
    -c, --config <config-path>
            Path to the squawk config file (.squawk.toml)

        --debug <format>
            Output debug info [possible values: Lex, Parse]

        --exclude-path <excluded-path>...
            Paths to exclude

            For example: --exclude-path=005_user_ids.sql --exclude-path=009_account_emails.sql

            --exclude-path='*user_ids.sql'

    -e, --exclude <rule>...
            Exclude specific warnings

            For example: --exclude=require-concurrent-index-creation,ban-drop-database

        --pg-version <pg-version>
            Specify postgres version

            For example: --pg-version=13.0
        --reporter <reporter>
            Style of error reporting [possible values: Tty, Gcc, Json]

        --stdin-filepath <filepath>
            Path to use in reporting for stdin


ARGS:
    <path>...
            Paths to search


SUBCOMMANDS:
    help                Prints this message or the help of the given subcommand(s)
    upload-to-github    Comment on a PR with Squawk's results

Rules

Individual rules can be disabled via the --exclude flag

squawk --exclude=adding-field-with-default,disallowed-unique-constraint example.sql

Disabling rules via comments

Rule violations can be ignored via the squawk-ignore comment:

-- squawk-ignore ban-drop-column
alter table t drop column c cascade;

You can also ignore multiple rules by making a comma seperated list:

-- squawk-ignore ban-drop-column, renaming-column,ban-drop-database
alter table t drop column c cascade;

To ignore a rule for the entire file, use squawk-ignore-file:

-- squawk-ignore-file ban-drop-column
alter table t drop column c cascade;
-- also ignored!
alter table t drop column d cascade;

Or leave off the rule names to ignore all rules for the file

-- squawk-ignore-file
alter table t drop column c cascade;
create table t (a int);

Configuration file

Rules can also be disabled with a configuration file.

By default, Squawk will traverse up from the current directory to find a .squawk.toml configuration file. You may specify a custom path with the -c or --config flag.

squawk --config=~/.squawk.toml example.sql

The --exclude flag will always be prioritized over the configuration file.

Example .squawk.toml

excluded_rules = [
    "require-concurrent-index-creation",
    "require-concurrent-index-deletion",
]

See the Squawk website for documentation on each rule with examples and reasoning.

Bot Setup

Squawk works as a CLI tool but can also create comments on GitHub Pull Requests using the upload-to-github subcommand.

Here's an example comment created by squawk using the example.sql in the repo:

https://github.com/sbdchd/squawk/pull/14#issuecomment-647009446

See the "GitHub Integration" docs for more information.

pre-commit hook

Integrate Squawk into Git workflow with pre-commit. Add the following to your project's .pre-commit-config.yaml:

repos:
  - repo: https://github.com/sbdchd/squawk
    rev: 2.40.0
    hooks:
      - id: squawk
        files: path/to/postgres/migrations/written/in/sql

Note the files parameter as it specifies the location of the files to be linted.

Prior Art / Related

Related Blog Posts / SE Posts / PG Docs

Dev

cargo install
cargo run
./s/test
./s/lint
./s/fmt

... or with nix:

$ nix develop
[nix-shell]$ cargo run
[nix-shell]$ cargo insta review
[nix-shell]$ ./s/test
[nix-shell]$ ./s/lint
[nix-shell]$ ./s/fmt

Adding a New Rule

When adding a new rule, running cargo xtask new-rule will create stubs for your rule in the Rust crate and in Documentation site.

cargo xtask new-rule 'prefer big serial'

Releasing a New Version

  1. Run s/update-version

    # update version in squawk/Cargo.toml, package.json, flake.nix to 4.5.3
    s/update-version 4.5.3
    
  2. Update the CHANGELOG.md

    Include a description of any fixes / additions. Make sure to include the PR numbers and credit the authors.

  3. Create a new release on GitHub

    Use the text and version from the CHANGELOG.md

Algolia

The squawkhq.com Algolia index can be found on the crawler website. Algolia reindexes the site every day at 5:30 (UTC).

How it Works

Squawk uses its parser (based on rust-analyzer's parser) to create a CST. The linters then use an AST layered on top of the CST to navigate and record warnings, which are then pretty printed!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

squawk_cli-2.40.0.tar.gz (679.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

squawk_cli-2.40.0-py3-none-win_amd64.whl (3.2 MB view details)

Uploaded Python 3Windows x86-64

squawk_cli-2.40.0-py3-none-win32.whl (2.9 MB view details)

Uploaded Python 3Windows x86

squawk_cli-2.40.0-py3-none-manylinux_2_28_x86_64.whl (5.7 MB view details)

Uploaded Python 3manylinux: glibc 2.28+ x86-64

squawk_cli-2.40.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

squawk_cli-2.40.0-py3-none-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

squawk_cli-2.40.0-py3-none-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded Python 3macOS 10.12+ x86-64

File details

Details for the file squawk_cli-2.40.0.tar.gz.

File metadata

  • Download URL: squawk_cli-2.40.0.tar.gz
  • Upload date:
  • Size: 679.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for squawk_cli-2.40.0.tar.gz
Algorithm Hash digest
SHA256 5e7951e6b35fbff0723a78a18c0a3f818e3daf854866f59e998f37c1e47641ad
MD5 7782577042cb5cf59bf8b17c9c90cbc8
BLAKE2b-256 c694dff962664a4d54d95d53b72a3b912e6c366df583273c697508be4dba331e

See more details on using hashes here.

File details

Details for the file squawk_cli-2.40.0-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for squawk_cli-2.40.0-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 41573ad751b72f8fd32ad8be89ba969cc691c53adafa8c60fa8a894bcff8cbcb
MD5 9868d3f854fffe4f90c945f78f381e71
BLAKE2b-256 64e5e4f18912c21a0ea70ea8c7964f196041e18aa998df289ad58fdcd0a3f062

See more details on using hashes here.

File details

Details for the file squawk_cli-2.40.0-py3-none-win32.whl.

File metadata

  • Download URL: squawk_cli-2.40.0-py3-none-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for squawk_cli-2.40.0-py3-none-win32.whl
Algorithm Hash digest
SHA256 e72ee808a607baa76b12ed4e6b2fa6a2e1b9000ed86bf0162aff9248a5ecf967
MD5 5f89c7f643d3d95180dbae1ccb5c09db
BLAKE2b-256 f17d85f223c49dc84f43e1410a4e438bb3e46a287c661f3963c17ca03c9ac58d

See more details on using hashes here.

File details

Details for the file squawk_cli-2.40.0-py3-none-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for squawk_cli-2.40.0-py3-none-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f76d227f8946fd34311daee64bb42eee0af0c4f948f3a8b74b8f89c585f8b4c
MD5 3b97f0bb4ae8e9a8824e89cdfc9a21df
BLAKE2b-256 7fc105600387f00f55c0cd97bf89c87950c4799827e13e3e37875cfca4fe884d

See more details on using hashes here.

File details

Details for the file squawk_cli-2.40.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for squawk_cli-2.40.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 401f8696eac7f7ac36122085ab493e8236215ec1306a52178edbb446259f8332
MD5 cdae55d5c841eb68910067abeb66492f
BLAKE2b-256 1a2d96d01f03f9eaa56c563ee7abab803736adce20818169c3e9d9071337c4a1

See more details on using hashes here.

File details

Details for the file squawk_cli-2.40.0-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for squawk_cli-2.40.0-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b5ff7fba5966e41a3cdcd7efa5fcdc7d2b64c736c0316d467b99ab45153a392
MD5 5b37c68fdb5fb69c347d4010d94d8b81
BLAKE2b-256 de33cbff3c6f456a3ed8c176122d9a71d85dd9747f198e909aa6f838671419fd

See more details on using hashes here.

File details

Details for the file squawk_cli-2.40.0-py3-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for squawk_cli-2.40.0-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ef46660b2a713cf9b9c1e663c73ee7573137b921624c33787bfdd477a667955
MD5 3c4b8e544929c781b9551b6584d15194
BLAKE2b-256 c1f0a5cd46fe8c34720c248d9af81664915e89b8107f8964bfbb377e5ee74b3d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page