Exec executes the query.
(ctx context.Context)
| 225 | |
| 226 | // Exec executes the query. |
| 227 | func (gcu *GitCommitUpdate) Exec(ctx context.Context) error { |
| 228 | _, err := gcu.Save(ctx) |
| 229 | return err |
| 230 | } |
| 231 | |
| 232 | // ExecX is like Exec, but panics if an error occurs. |
| 233 | func (gcu *GitCommitUpdate) ExecX(ctx context.Context) { |