drop_role_stmt.go 185 B

1234567891011121314
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type DropRoleStmt struct {
  6. Roles *ast.List
  7. MissingOk bool
  8. }
  9. func (n *DropRoleStmt) Pos() int {
  10. return 0
  11. }