/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/sql/ast/null_test_expr.go
34 строки
630 B
Kyle Gray
refactor(ast): rename Formatter interface to Dialect (#4208)
01 дек 2025, 04:49
Не верифицирован
01 дек 2025, 04:49
ebd32cf
Код
Авторство
О чём код?
package ast import "github.com/sqlc-dev/sqlc/internal/sql/format" type NullTest struct { Xpr Node Arg Node Nulltesttype NullTestType Argisrow bool Location int } func (n *NullTest) Pos() int { return n.Location } // NullTestType values const ( NullTestTypeIsNull NullTestType = 1 NullTestTypeIsNotNull NullTestType = 2 ) func (n *NullTest) Format(buf *TrackedBuffer, d format.Dialect) { if n == nil { return } buf.astFormat(n.Arg, d) switch n.Nulltesttype { case NullTestTypeIsNull: buf.WriteString(" IS NULL") case NullTestTypeIsNotNull: buf.WriteString(" IS NOT NULL") } }