/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/sql/ast/with_clause.go
24 строки
402 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 WithClause struct { Ctes *List Recursive bool Location int } func (n *WithClause) Pos() int { return n.Location } func (n *WithClause) Format(buf *TrackedBuffer, d format.Dialect) { if n == nil { return } buf.WriteString("WITH ") if n.Recursive { buf.WriteString("RECURSIVE ") } buf.join(n.Ctes, d, ", ") }