drop_subscription_stmt.go 164 B

1234567891011
  1. package pg
  2. type DropSubscriptionStmt struct {
  3. Subname *string
  4. MissingOk bool
  5. Behavior DropBehavior
  6. }
  7. func (n *DropSubscriptionStmt) Pos() int {
  8. return 0
  9. }