Skip to main content

dbt-refmerge

CI Coverage PyPI Python OpenSSF Scorecard

Finds duplicated import CTEs in your dbt models — two CTEs reading different columns from the same {{ ref(...) }} — proves the merged version returns identical rows on your warehouse, and rewrites the file. Anything it can't prove, it leaves alone.

It also narrows select * imports to the columns their consumers need when the final query names its outputs. Join keys, filter inputs and calculation inputs are retained. This works for a single ref()/source() import, and can enable duplicate wildcard imports to merge. See column pruning and performance expectations.

Dialect support

SQL parsing and scan run locally from text. No warehouse connection, dbt adapter installation or credentials are needed when you pass --adapter. Snowflake and BigQuery parsing includes column pruning through import wildcard exclusions and qualified row expansion; see column pruning support and limits.

PostgreSQL is the only dialect with warehouse verification and automatic fixes. All other configured dialects have limited support:

Dialects Available commands
PostgreSQL (postgres, also postgresql and pg) scan, check, fix, cleanup
snowflake, bigquery, duckdb, databricks, redshift, materialize, trino, presto, athena, spark, sqlite, tsql, oracle, exasol, clickhouse Limited support: scan only

Limited dialects can report duplicate-import and column-pruning opportunities. Warehouse verification and automatic rewriting are unavailable for these dialects. See adapter configuration for details.

# Run in a dbt project; these commands only read local files.
dbt-refmerge scan --adapter snowflake
dbt-refmerge scan --adapter bigquery

Use it

pip install dbt-refmerge
cd your-dbt-project
dbt-refmerge scan

That's it. The dialect is detected automatically from your profiles.yml/manifest.json (override with --adapter postgres if needed). You'll get one line per opportunity:

models/marts/orders.sql:3: CTEs order_items, order_items_summary import model.shop.stg_order_items; run dbt-refmerge check to prove a merge

Each line is a lead: two CTEs over the same upstream model that may merge into one. Then, on a branch:

git checkout -b refmerge-cleanup
export DBT_REFMERGE_SCRATCH_SCHEMA=refmerge_scratch     # where verification views go
dbt-refmerge check                                      # proves each merge on your warehouse
dbt-refmerge fix models/marts/orders.sql --dry-run      # preview the rewrite
dbt-refmerge fix models/marts/orders.sql                # re-proves, then applies it
git diff                                                # review, test, open a PR

scan and check never touch your files. fix refuses to write unless the proof passes on current data (applied=false plus a reason means it's working, not broken).

To prove a merge, check builds the original and the merged model as two views in the scratch schema (dbt creates it if needed; it must not be a schema your models build into), compares their column types and their rows as multisets in a single query, then drops both views. All models in a check share one batch of dbt calls, so a large project costs about as many dbt invocations as a small one, and a model that fails doesn't block the others. If a run is interrupted, dbt-refmerge cleanup --run-id <id> drops whatever it left (the id is in check --json). See dialect support for the commands available on each adapter.

Keep new duplicates out

scan needs no dbt run and no warehouse, so it works as a commit hook or a pull request check (both need 0.2.0 or later; column pruning needs 0.3.0 or later):

# .pre-commit-config.yaml
- repo: https://github.com/John-Cusack/dbt-refmerge
  rev: v0.3.0
  hooks:
    - id: dbt-refmerge-scan
# a GitHub Actions step: annotates duplicate imports and column-pruning leads
- uses: John-Cusack/dbt-refmerge@v0.3.0
  with:
    adapter: snowflake

See integrations for options and other CI systems.

Documentation

Develop it

Keep the inner test loop focused and in memory:

pip install -e ".[dev,integration]"
python3 -m pytest -q tests/unit/test_odd_scenarios.py  # odd-scenario safety lane
python3 -m pytest -q                                  # unit lane (default)
python3 -m ruff check .
python3 -m mypy --strict src

The default run is the in-memory unit lane and takes a few seconds on a typical development machine. Two slower lanes are opt-in:

python3 -m pytest -q -m fake_dbt      # subprocess tests against tests/fakes/fake_dbt.py

docker run --rm -d --name refmerge-pg -p 5432:5432 \
  -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=refmerge postgres:16
export REFMERGE_TEST_PG_DSN=postgresql://postgres:postgres@localhost:5432/refmerge
python3 -m pytest -q -m warehouse     # needs Postgres and dbt-postgres
python3 -m pytest -q -m "" --cov      # every lane; enforces the coverage floor

See CONTRIBUTING.md for conventions and the release process, and SECURITY.md to report a vulnerability. IMPROVEMENT_PLAN.md tracks what comes next.

Support

If this saves you an afternoon, buy me a coffee.

MIT license. Requires Python ≥ 3.11 and your own dbt installation.

Release files for dbt-refmerge 0.3.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for dbt-refmerge 0.3.0
File Size Uploaded
dbt_refmerge-0.3.0.tar.gz 165.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for dbt-refmerge 0.3.0
File Interpreter ABI Platform
dbt_refmerge-0.3.0-py3-none-any.whl Python 3 none any Details

Total release size: 250.4 kB

Release files / dbt_refmerge-0.3.0.tar.gz

Download URL dbt_refmerge-0.3.0.tar.gz
Size 165.1 kB
Tags Source
SHA-256 checksum
How to use checksums
6b5b0e095edcd5dffe94425a08c1589f1b33aa56c5c2598a39da387cc33fd82d
BLAKE2b-256 checksum
How to use checksums
6799a9f414e8898b4e0f9ac6bf19f22c8703d3b861f66a8806fd548bd841c53a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / dbt_refmerge-0.3.0-py3-none-any.whl

Download URL dbt_refmerge-0.3.0-py3-none-any.whl
Size 85.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
7c1aa5e85e10f6d4a328703a6f250691c4a40e84e07cdb653a9b0075448557df
BLAKE2b-256 checksum
How to use checksums
f806f041930463c7ce4719e3335a9f4586744a9a0675d1b445997b13da10f637
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.3.0 This release

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page