2023-06-22 15:14:51 +00:00
|
|
|
package mdbc
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
type indexesScope struct {
|
2023-06-23 15:56:52 +00:00
|
|
|
scope *scope
|
|
|
|
mdbc *mdbc
|
|
|
|
ctx context.Context
|
2023-06-22 15:14:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (is *indexesScope) SetContext(ctx context.Context) *indexesScope {
|
|
|
|
is.ctx = ctx
|
|
|
|
return is
|
|
|
|
}
|
|
|
|
|
|
|
|
func (is *indexesScope) Create(ctx context.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (is *indexesScope) Drop(ctx context.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (is *indexesScope) List(ctx context.Context) error {
|
|
|
|
return nil
|
|
|
|
}
|