| 11 | ) |
| 12 | |
| 13 | type catalogStore struct { |
| 14 | *connection |
| 15 | instanceID string |
| 16 | } |
| 17 | |
| 18 | func (c *catalogStore) NextControllerVersion(ctx context.Context) (int64, error) { |
| 19 | _, err := c.db.ExecContext(ctx, "INSERT OR IGNORE INTO controller_version(instance_id, version) VALUES (?, 0)", c.instanceID) |
nothing calls this directly
no outgoing calls
no test coverage detected