Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Analyzer ¶
Analyzer checks data-dependent changes.
func (*Analyzer) Diagnostics ¶
Diagnostics runs the common analysis on the file and returns its diagnostics.
type ColumnHandler ¶
type ColumnHandler func(*ColumnPass) ([]sqlcheck.Diagnostic, error)
ColumnHandler allows provide custom diagnostic for specific column rules.
type ColumnPass ¶
type ColumnPass struct { *sqlcheck.Pass Change *sqlcheck.Change // Change context (statement). Table *schema.Table // The table this column belongs to. Column *schema.Column // The diagnosed column. }
ColumnPass wraps the information needed by the handler below to diagnose columns.
type Handler ¶
type Handler struct { // AddNotNull is applied when a new non-nullable column was // added to an existing table. AddNotNull ColumnHandler // ModifyNotNull is an optional handler applied when // a nullable column was changed to non-nullable. ModifyNotNull ColumnHandler }
Handler holds the underlying driver handlers.
Click to show internal directories.
Click to hide internal directories.