Skip to content

RF01 — Reference to an unknown table, column or alias (needs schema)

Group: References · Auto-fixable: no

The reference does not resolve against the connected schema. This catches typos and stale queries at author time. Requires a [database] connection so the live schema can be introspected; without one these checks are skipped.

A ‘did you mean …?’ hint is offered when a similarly named object exists.

Disable this rule in banshee.toml:

[lint]
exclude = ["RF01"]

Or silence one line with -- noqa: RF01. See Linting.