HasRootObject implements the interface objinterface.Collection.
(ctx context.Context, identifier id.Id)
| 64 | |
| 65 | // HasRootObject implements the interface objinterface.Collection. |
| 66 | func (pge *Collection) HasRootObject(ctx context.Context, identifier id.Id) (bool, error) { |
| 67 | if identifier.Section() != id.Section_Extension { |
| 68 | return false, nil |
| 69 | } |
| 70 | return pge.HasLoadedExtension(ctx, id.Extension(identifier)), nil |
| 71 | } |
| 72 | |
| 73 | // IDToTableName implements the interface objinterface.Collection. |
| 74 | func (pge *Collection) IDToTableName(identifier id.Id) doltdb.TableName { |
nothing calls this directly
no test coverage detected