(resource *schema.Resource)
| 677 | } |
| 678 | |
| 679 | func (tx *Transaction) Update(resource *schema.Resource) error { |
| 680 | return tx.UpdateContext(context.Background(), resource) |
| 681 | } |
| 682 | |
| 683 | //Update update resource in the db |
| 684 | func (tx *Transaction) UpdateContext(ctx context.Context, resource *schema.Resource) error { |
nothing calls this directly
no test coverage detected