ExecX is like Exec, but panics if an error occurs.
(ctx context.Context)
| 209 | |
| 210 | // ExecX is like Exec, but panics if an error occurs. |
| 211 | func (_u *GroupUpdate) ExecX(ctx context.Context) { |
| 212 | if err := _u.Exec(ctx); err != nil { |
| 213 | panic(err) |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | // check runs all checks and user-defined validators on the builder. |
| 218 | func (_u *GroupUpdate) check() error { |