/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/sql/ast/res_target.go
31 строка
537 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 ResTarget struct { Name *string Indirection *List Val Node Location int } func (n *ResTarget) Pos() int { return n.Location } func (n *ResTarget) Format(buf *TrackedBuffer, d format.Dialect) { if n == nil { return } if set(n.Val) { buf.astFormat(n.Val, d) if n.Name != nil { buf.WriteString(" AS ") buf.WriteString(d.QuoteIdent(*n.Name)) } } else { if n.Name != nil { buf.WriteString(d.QuoteIdent(*n.Name)) } } }