WithStorage returns a new root value with the given storage.
(ctx context.Context, st storage.RootStorage)
| 911 | |
| 912 | // WithStorage returns a new root value with the given storage. |
| 913 | func (root *RootValue) WithStorage(ctx context.Context, st storage.RootStorage) objinterface.RootValue { |
| 914 | return root.withStorage(st) |
| 915 | } |
| 916 | |
| 917 | // getTableMap returns the tableMap for this root. |
| 918 | func (root *RootValue) getTableMap(ctx context.Context, schemaName string) (storage.RootTableMap, error) { |
nothing calls this directly
no test coverage detected