mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
* Implement Schemar.SetDatabaseOption(option, value string) This replaces the temporary `SetDatabaseOptions()` method, which replaced the entire DatabaseOptions struct, with `SetDatabaseOption` which takes an option/value pair of strings to set. * Add SetDatabaseOption to controller http handler and client This commit also: - renames some `writeLog` to `writelog` - updates ApplyDirective to call resource.Unlock() on any resources being removed from the local worker * Add Database related methods to SchemaAPI interface Currently all implementations of this interface are implemented with "unimplemented" errors on those methods. Next will be to implement the necessary methods. * SQL: CREATE DATABASE and SHOW DATABASES * SQL: DROP DATABASE * SQL: Add UNITS option to CREATE DATABASE * SQL: ALTER DATABASE * User serverlessStorage.Remove[*]Resource instead of resource.Unlock() * Add WITH keyword to CREATE/ALTER DATABASE * fix some WITH logic * linter fixes * WITH on CREATE DATABASE is not required
84 lines
1.9 KiB
Go
84 lines
1.9 KiB
Go
// Copyright 2021 Molecula Corp. All rights reserved.
|
|
|
|
package planner
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/featurebasedb/featurebase/v3/dax"
|
|
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
|
|
)
|
|
|
|
// PlanOpDropDatabase plan operator to drop a database.
|
|
type PlanOpDropDatabase struct {
|
|
planner *ExecutionPlanner
|
|
db *dax.Database
|
|
warnings []string
|
|
}
|
|
|
|
func NewPlanOpDropDatabase(p *ExecutionPlanner, db *dax.Database) *PlanOpDropDatabase {
|
|
return &PlanOpDropDatabase{
|
|
planner: p,
|
|
db: db,
|
|
warnings: make([]string, 0),
|
|
}
|
|
}
|
|
|
|
func (p *PlanOpDropDatabase) Plan() map[string]interface{} {
|
|
result := make(map[string]interface{})
|
|
result["_op"] = fmt.Sprintf("%T", p)
|
|
result["databaseName"] = p.db.Name
|
|
return result
|
|
}
|
|
|
|
func (p *PlanOpDropDatabase) String() string {
|
|
return ""
|
|
}
|
|
|
|
func (p *PlanOpDropDatabase) AddWarning(warning string) {
|
|
p.warnings = append(p.warnings, warning)
|
|
}
|
|
|
|
func (p *PlanOpDropDatabase) Warnings() []string {
|
|
return p.warnings
|
|
}
|
|
|
|
func (p *PlanOpDropDatabase) Schema() types.Schema {
|
|
return types.Schema{}
|
|
}
|
|
|
|
func (p *PlanOpDropDatabase) Children() []types.PlanOperator {
|
|
return []types.PlanOperator{}
|
|
}
|
|
|
|
func (p *PlanOpDropDatabase) Iterator(ctx context.Context, row types.Row) (types.RowIterator, error) {
|
|
return &dropDatabaseRowIter{
|
|
planner: p.planner,
|
|
db: p.db,
|
|
}, nil
|
|
}
|
|
|
|
func (p *PlanOpDropDatabase) WithChildren(children ...types.PlanOperator) (types.PlanOperator, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
type dropDatabaseRowIter struct {
|
|
planner *ExecutionPlanner
|
|
db *dax.Database
|
|
}
|
|
|
|
var _ types.RowIterator = (*dropDatabaseRowIter)(nil)
|
|
|
|
func (i *dropDatabaseRowIter) Next(ctx context.Context) (types.Row, error) {
|
|
err := i.planner.checkAccess(ctx, string(i.db.Name), accessTypeDropObject)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = i.planner.schemaAPI.DropDatabase(ctx, i.db.ID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return nil, types.ErrNoMoreRows
|
|
}
|