create_stats_stmt.go 264 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateStatsStmt struct {
  6. Defnames *ast.List
  7. StatTypes *ast.List
  8. Exprs *ast.List
  9. Relations *ast.List
  10. IfNotExists bool
  11. }
  12. func (n *CreateStatsStmt) Pos() int {
  13. return 0
  14. }