Skip to main content
Valid isn’t the same as correct. Your SQL compiles, runs, and returns rows - none of that means the number is right, and a silently-wrong number a stakeholder already trusted is the bug that actually hurts. SQLBuild brings software-engineering rigor to SQL pipelines: verify early, test properly, deploy reversibly. Catch errors before the warehouse runs them and test your logic locally - with change-aware builds and reversible deploys there when you need them, not forced on you on day one. It works on a standalone SQL project or points at your existing dbt project with no migration - free and open source.

Test properly

Most data testing checks for nulls and uniqueness. That tells you a column isn’t empty, not that your logic is right. SQLBuild tests the logic.
  • Chained unit tests. Mock your sources, assert on the model you care about, and SQLBuild resolves every intermediate model from its real SQL. One test file can be a full integration test across your pipeline.
  • E2E scenario tests with local replay. Build the real model graph against coherent fixtures in isolated relations, capture the result as JSONL, and replay it locally through DuckDB. CI runs full end-to-end tests with zero warehouse credentials or compute.
  • Macro-powered mocks. Tests are SQL, so they support macro calls - write reusable mock generators instead of copy-pasting fixtures.
See Testing for unit tests, scenarios, and local replay.

Verify early

Before any model runs, SQLBuild does static analysis of your project - offline, no warehouse connection needed.
  • Catch errors at compile. SQL syntax, type inference, contract checks, and column lineage all run before execution. A bad reference or a type mismatch fails at compile, with an error that points at the line - not halfway through a warehouse run.
  • Fast, because it’s Rust where it counts. Static analysis runs on Polyglot, a Rust SQL engine (MIT, 32+ dialects), so compile stays quick even on large projects.
  • Open, not paywalled. The static analysis is part of the Apache-2.0 core - no proprietary engine, no separate login, and no paid tier gating the smart checks.

Change-aware builds, when you need them

Start simple. By default, sqb build runs your full selection - the same predictable mental model as dbt, with nothing to configure. For many projects, that is all they will ever need. Scale deliberately. Change-aware builds are powerful: every model, seed, UDF, and Python node has a versioned identity, so SQLBuild can skip anything already current and only pay for the work that actually changed. But that power introduces complexity - warehouse state to reason about, staleness and cascade behavior, and partial-selection edge cases - that is not worth it for smaller or simpler pipelines. So it is opt-in: turn it on with --changes-only (or changes_only = true in config) when the cost of full rebuilds outgrows the simplicity of running everything. When enabled, change detection covers the whole graph:
  • Models and UDFs: fingerprinted by query hash, config, and upstream UDF hashes. Unchanged models are skipped.
  • Seeds: content and load-affecting config are hashed. Unchanged seeds are not reloaded.
  • Audits: audits that already passed for the same model version are not re-run.
  • Source freshness: external source data versions are tracked automatically. Models downstream of unchanged sources are skipped, with lag tolerance to avoid jitter.
  • Cascade propagation: when a model does change, the signal propagates downstream, with configurable replay windows (replay_on_change).
  • Python nodes: loaders, tasks, assets, checks, and hooks are fingerprinted by source and dependency hashes; skip/run is user-controlled via ctx.skip().
State is plain append-only rows in your own warehouse (_sqlbuild_fingerprints, _sqlbuild_source_freshness, _sqlbuild_node_results) - no external state database, no manifest files, no state machine that can corrupt. Point SQLBuild at an existing dbt project and the same opt-in change detection prunes unchanged dbt models from the run - nothing metered, no account, nothing to log into.

Deploy reversibly (opt-in)

By default, SQLBuild runs in standard mode with state as append-only rows in your warehouse. When you want more, virtual environments add a reversibility layer on top:
  • Instant branching, promotion, and rollback as low-copy pointer operations.
  • Partial promotion. Promote the models that are ready without re-running everything downstream of them - you don’t have to rebuild the whole closure to ship one fix.
  • Checkpoints and reconciliation so a bad change is something you undo, not an incident.
Virtual environments are opt-in, not a tax you pay upfront - standard mode stays the default, so the floor stays low and you reach for them only when a workflow needs them.

Supported adapters

SQLBuild works with DuckDB, MotherDuck, Snowflake, BigQuery, Databricks, PostgreSQL, and SQL Server today. Support for ClickHouse, Redshift, Trino, Spark, and Athena is on the way. DuckDB runs entirely locally, so you can try SQLBuild and run full E2E tests without any warehouse credentials. Head to the Quickstart to get a project running in minutes, or see Adapters for connection setup.

More in SQLBuild

Familiar SQL models

Models are SQL files with a MODEL() header and a SELECT. References to other models and sources use __ref() and __source(), and configuration, schema, and audits are declared inline in the header. If you know dbt or SQLMesh, you already know the shape.

Python macros, not Jinja

  • Real Python functions: Macros are plain Python, called with @macro() in SQL. Testable, debuggable, and composable with standard tooling - no Jinja, no string-templating language to wrangle.

Audits that block bad data

  • Full table builds: SQLBuild materializes into a staging table and runs error-severity audits before promotion. If any fail, the swap is blocked and the production table is untouched.
  • Incremental models: Delta-phase audits validate each batch before DML is applied. Bad data is caught before it reaches the target.

Incremental processing

  • Cursor-based replay: SQLBuild resumes by reading the highest timestamp or integer value already in the target table. If a model fails for several runs, the next successful build picks up from the last data it actually wrote, with no manual backfilling.
  • Microbatch mode: Split large replay windows into configurable batches, each with its own audit cycle. Or process the full range in one pass, the choice is per-model.
  • Replay on change: When a model’s version identity changes, replay_on_change controls how much data to reprocess: forward (default, just run the next delta), bounded-14d (replay a window), or full (rebuild the table).

Python you can read and extend

  • The framework is Python. Adapters, macros, hooks, providers, custom materializations, and Python nodes are all plain Python you can read and extend. (The SQL analysis underneath runs on Rust via Polyglot - see Verify early - so the code you work with stays Python while compile stays fast.)

Testing in depth

Beyond the chained unit tests shown above, SQLBuild runs end-to-end scenario tests against the real model graph, with local replay and property assertions.
  • Real graph execution: Define coherent fixture inputs, and SQLBuild builds the real model graph against them in isolated warehouse relations. Test end-to-end business logic across your entire pipeline, not just one model at a time.
  • Local replay without a warehouse: Capture scenario fixtures as JSONL snapshots, then replay them locally through DuckDB. CI pipelines run full E2E tests with zero warehouse credentials or compute cost.
  • Zero-row assertions: Write property checks that pass when no rows violate a condition. Useful for invariants like “no negative revenue” or “no duplicate customer IDs” alongside full expected-output comparisons.

Python nodes

Grow beyond warehouse-only SQL without leaving the graph. Python nodes are ordinary functions, decorated to become first-class nodes in the same DAG as your SQL models, and they run as part of sqb build. There are four kinds:
  • Loaders (@loader) load external data into managed sources, with incremental write strategies (table, append, delete_insert, merge), cursor-based loading, and concurrent execution.
  • Tasks (@task) run Python computation or side effects as graph nodes.
  • Assets (@asset) produce or observe external artifacts, with optional columns and lineage.
  • Checks (@check) validate tasks, assets, and loaders, and run during sqb build or on their own with sqb check.
SQL models never depend on Python nodes - the only path from Python into SQL is a loader populating a source - so the SQL graph stays fully analyzable on its own. Nodes can also be generated programmatically with @factory. See Python Nodes.

Multi-target workflows

  • Data diffs: Compare schemas and row-level data between targets (or virtual environments) with sqb diff prod:dev.
SQLBuild diff output showing schema comparison, row-level differences, and changed column values between prod and dev targets
  • Zero-copy cloning: Branch targets instantly with sqb clone without duplicating data.
  • Deferred references: Compile and plan against a production target with --defer-to while building in dev.
  • No manifest required: Clone, diff, and defer work directly against live targets. No manifest.json generation, no artifact management, no stale state.

Extensibility

  • User-defined functions: SQL and Python UDFs managed as part of your project. Functions participate in the DAG - definition changes trigger rebuilds of dependent models. Table functions provide predicate-pushdown-friendly alternatives to final-layer views.
  • Custom materializations: Write materialization logic in Python with full framework integration - including audit hooks, schema change signals, and query change detection.
  • Path-between selectors: --select fact_orders~daily_activity_rollup selects every model on the shortest path between two nodes, with optional upstream/downstream expansion.

What’s next

  • Broader adapter support - ClickHouse, Redshift, Trino, Spark, Athena

Quickstart

Get a project running locally in minutes.

CLI Reference

Full reference for every SQLBuild command.

Concepts

Understand models, incremental strategies, audits, and selectors.

Scenarios

E2E tests with local DuckDB replay.