GetConflictRootObject implements the interface doltdb.RootValue. This function is specifically used to find conflicts, as the standard GetRootObject will not look at the conflicts collection.
(ctx context.Context, tName doltdb.TableName)
| 318 | // GetConflictRootObject implements the interface doltdb.RootValue. This function is specifically used to find conflicts, |
| 319 | // as the standard GetRootObject will not look at the conflicts collection. |
| 320 | func (root *RootValue) GetConflictRootObject(ctx context.Context, tName doltdb.TableName) (doltdb.ConflictRootObject, bool, error) { |
| 321 | return rootobject.GetRootObjectConflicts(ctx, root, tName) |
| 322 | } |
| 323 | |
| 324 | // GetConflictRootObjects implements the interface doltdb.RootValue. |
| 325 | func (root *RootValue) GetConflictRootObjects(ctx context.Context) ([]doltdb.ConflictRootObject, error) { |
nothing calls this directly
no test coverage detected