GetRootObject implements the interface doltdb.RootValue.
(ctx context.Context, tName doltdb.TableName)
| 371 | |
| 372 | // GetRootObject implements the interface doltdb.RootValue. |
| 373 | func (root *RootValue) GetRootObject(ctx context.Context, tName doltdb.TableName) (doltdb.RootObject, bool, error) { |
| 374 | return rootobject.GetRootObject(ctx, root, tName) |
| 375 | } |
| 376 | |
| 377 | // GetStorage returns the underlying storage. |
| 378 | func (root *RootValue) GetStorage(ctx context.Context) storage.RootStorage { |
nothing calls this directly
no test coverage detected