mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
* first time quantum queries working * implement select from timequantum columns * skip a dax test * make linter happy * addressed review feedback * reverted over eager test elimination
113 lines
2.6 KiB
Go
113 lines
2.6 KiB
Go
// Copyright 2022 Molecula Corp. All rights reserved.
|
|
|
|
package planner
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/featurebasedb/featurebase/v3/sql3"
|
|
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
|
|
)
|
|
|
|
// PlanOpRelAlias implements an alias for a relation
|
|
type PlanOpRelAlias struct {
|
|
ChildOp types.PlanOperator
|
|
alias string
|
|
warnings []string
|
|
}
|
|
|
|
func NewPlanOpRelAlias(alias string, child types.PlanOperator) *PlanOpRelAlias {
|
|
return &PlanOpRelAlias{
|
|
ChildOp: child,
|
|
alias: alias,
|
|
warnings: make([]string, 0),
|
|
}
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) Schema() types.Schema {
|
|
schema := p.ChildOp.Schema()
|
|
for _, s := range schema {
|
|
s.AliasName = p.alias
|
|
}
|
|
return schema
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) Iterator(ctx context.Context, row types.Row) (types.RowIterator, error) {
|
|
return p.ChildOp.Iterator(ctx, row)
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) Children() []types.PlanOperator {
|
|
return []types.PlanOperator{
|
|
p.ChildOp,
|
|
}
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) WithChildren(children ...types.PlanOperator) (types.PlanOperator, error) {
|
|
if len(children) != 1 {
|
|
return nil, sql3.NewErrInternalf("unexpected number of children '%d'", len(children))
|
|
}
|
|
return NewPlanOpRelAlias(p.alias, children[0]), nil
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) Plan() map[string]interface{} {
|
|
result := make(map[string]interface{})
|
|
result["_op"] = fmt.Sprintf("%T", p)
|
|
result["_schema"] = p.Schema().Plan()
|
|
result["alias"] = p.alias
|
|
result["child"] = p.ChildOp.Plan()
|
|
return result
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) String() string {
|
|
return ""
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) AddWarning(warning string) {
|
|
p.warnings = append(p.warnings, warning)
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) Warnings() []string {
|
|
var w []string
|
|
w = append(w, p.warnings...)
|
|
w = append(w, p.ChildOp.Warnings()...)
|
|
return w
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) Name() string {
|
|
return p.alias
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) IsFilterable() bool {
|
|
ch, ok := p.ChildOp.(types.FilteredRelation)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return ch.IsFilterable()
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) UpdateFilters(filterCondition types.PlanExpression) (types.PlanOperator, error) {
|
|
ch, ok := p.ChildOp.(types.FilteredRelation)
|
|
if !ok {
|
|
return nil, sql3.NewErrInternalf("childop is not filterable")
|
|
}
|
|
newChild, err := ch.UpdateFilters(filterCondition)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
p.ChildOp = newChild
|
|
return p, nil
|
|
}
|
|
|
|
func (p *PlanOpRelAlias) UpdateTimeQuantumFilters(filters ...types.PlanExpression) (types.PlanOperator, error) {
|
|
ch, ok := p.ChildOp.(types.FilteredRelation)
|
|
if !ok {
|
|
return nil, sql3.NewErrInternalf("childop is not filterable")
|
|
}
|
|
newChild, err := ch.UpdateTimeQuantumFilters(filters...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
p.ChildOp = newChild
|
|
return p, nil
|
|
}
|