drop_user_mapping_stmt.go 162 B

1234567891011
  1. package pg
  2. type DropUserMappingStmt struct {
  3. User *RoleSpec
  4. Servername *string
  5. MissingOk bool
  6. }
  7. func (n *DropUserMappingStmt) Pos() int {
  8. return 0
  9. }