/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/sql/ast/query.go
44 строки
951 B
Kyle Conroy
gofmt -s -w . (#890)
08 фев 2021, 08:16
Не верифицирован
08 фев 2021, 08:16
9a59d89
Код
Авторство
О чём код?
package ast type Query struct { CommandType CmdType QuerySource QuerySource QueryId uint32 CanSetTag bool UtilityStmt Node ResultRelation int HasAggs bool HasWindowFuncs bool HasTargetSrfs bool HasSubLinks bool HasDistinctOn bool HasRecursive bool HasModifyingCte bool HasForUpdate bool HasRowSecurity bool CteList *List Rtable *List Jointree *FromExpr TargetList *List Override OverridingKind OnConflict *OnConflictExpr ReturningList *List GroupClause *List GroupingSets *List HavingQual Node WindowClause *List DistinctClause *List SortClause *List LimitOffset Node LimitCount Node RowMarks *List SetOperations Node ConstraintDeps *List WithCheckOptions *List StmtLocation int StmtLen int } func (n *Query) Pos() int { return 0 }