pglockanalyze 0.0.1

Analyze what PostgreSQL locks are acquired by your schema migrations
docs.rs failed to build pglockanalyze-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: pglockanalyze-0.0.4

pglockanalyze

Analyze and diagnose the locks acquired by your PostgreSQL migrations.

For use in CI and development environments.

Status

This software is experimental and under development; not yet ready for production use.

Usage

$ echo 'ALTER TABLE users ALTER COLUMN name SET NOT NULL' | pglockanalyze --db 'postgresql://a:b@localhost/db'
ALTER TABLE users ALTER COLUMN name SET NOT NULL
	acquired `AccessExclusive` lock on relation `users` (oid=16386)

Use --help to see all options.