drop_owned_stmt.go 193 B

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