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
112 lines
2.8 KiB
Go
112 lines
2.8 KiB
Go
// Copyright 2021 Molecula Corp. All rights reserved.
|
|
|
|
package planner
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
pilosa "github.com/featurebasedb/featurebase/v3"
|
|
"github.com/featurebasedb/featurebase/v3/dax"
|
|
"github.com/featurebasedb/featurebase/v3/sql3"
|
|
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// PlanOpCreateDatabase is a plan operator that creates a database.
|
|
type PlanOpCreateDatabase struct {
|
|
planner *ExecutionPlanner
|
|
databaseName string
|
|
failIfExists bool
|
|
units int
|
|
description string
|
|
warnings []string
|
|
}
|
|
|
|
// NewPlanOpCreateDatabase returns a new PlanOpCreateDatabase planoperator
|
|
func NewPlanOpCreateDatabase(p *ExecutionPlanner, databaseName string, failIfExists bool, units int, description string) *PlanOpCreateDatabase {
|
|
return &PlanOpCreateDatabase{
|
|
planner: p,
|
|
databaseName: databaseName,
|
|
failIfExists: failIfExists,
|
|
units: units,
|
|
description: description,
|
|
warnings: make([]string, 0),
|
|
}
|
|
}
|
|
|
|
func (p *PlanOpCreateDatabase) Plan() map[string]interface{} {
|
|
result := make(map[string]interface{})
|
|
result["_op"] = fmt.Sprintf("%T", p)
|
|
result["name"] = p.databaseName
|
|
result["failIfExists"] = p.failIfExists
|
|
return result
|
|
}
|
|
|
|
func (p *PlanOpCreateDatabase) String() string {
|
|
return ""
|
|
}
|
|
|
|
func (p *PlanOpCreateDatabase) AddWarning(warning string) {
|
|
p.warnings = append(p.warnings, warning)
|
|
}
|
|
|
|
func (p *PlanOpCreateDatabase) Warnings() []string {
|
|
return p.warnings
|
|
}
|
|
|
|
func (p *PlanOpCreateDatabase) Schema() types.Schema {
|
|
return types.Schema{}
|
|
}
|
|
|
|
func (p *PlanOpCreateDatabase) Children() []types.PlanOperator {
|
|
return []types.PlanOperator{}
|
|
}
|
|
|
|
func (p *PlanOpCreateDatabase) Iterator(ctx context.Context, row types.Row) (types.RowIterator, error) {
|
|
return &createDatabaseRowIter{
|
|
planner: p.planner,
|
|
databaseName: p.databaseName,
|
|
failIfExists: p.failIfExists,
|
|
units: p.units,
|
|
description: p.description,
|
|
}, nil
|
|
}
|
|
|
|
func (p *PlanOpCreateDatabase) WithChildren(children ...types.PlanOperator) (types.PlanOperator, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
type createDatabaseRowIter struct {
|
|
planner *ExecutionPlanner
|
|
databaseName string
|
|
failIfExists bool
|
|
units int
|
|
description string
|
|
}
|
|
|
|
var _ types.RowIterator = (*createDatabaseRowIter)(nil)
|
|
|
|
func (i *createDatabaseRowIter) Next(ctx context.Context) (types.Row, error) {
|
|
//create the database
|
|
db := &dax.Database{
|
|
Name: dax.DatabaseName(i.databaseName),
|
|
Options: dax.DatabaseOptions{
|
|
WorkersMin: i.units,
|
|
WorkersMax: i.units,
|
|
},
|
|
|
|
Description: i.description,
|
|
}
|
|
|
|
if err := i.planner.schemaAPI.CreateDatabase(ctx, db); err != nil {
|
|
if _, ok := errors.Cause(err).(pilosa.ConflictError); ok {
|
|
if i.failIfExists {
|
|
return nil, sql3.NewErrDatabaseExists(0, 0, i.databaseName)
|
|
}
|
|
} else {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nil, types.ErrNoMoreRows
|
|
}
|