607 lines
17 KiB
Go
607 lines
17 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
"git.dotya.ml/mirre-mt/pcmt/ent/agekey"
|
|
"git.dotya.ml/mirre-mt/pcmt/ent/predicate"
|
|
"git.dotya.ml/mirre-mt/pcmt/ent/user"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// AgeKeyQuery is the builder for querying AgeKey entities.
|
|
type AgeKeyQuery struct {
|
|
config
|
|
ctx *QueryContext
|
|
order []agekey.OrderOption
|
|
inters []Interceptor
|
|
predicates []predicate.AgeKey
|
|
withUser *UserQuery
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the AgeKeyQuery builder.
|
|
func (akq *AgeKeyQuery) Where(ps ...predicate.AgeKey) *AgeKeyQuery {
|
|
akq.predicates = append(akq.predicates, ps...)
|
|
return akq
|
|
}
|
|
|
|
// Limit the number of records to be returned by this query.
|
|
func (akq *AgeKeyQuery) Limit(limit int) *AgeKeyQuery {
|
|
akq.ctx.Limit = &limit
|
|
return akq
|
|
}
|
|
|
|
// Offset to start from.
|
|
func (akq *AgeKeyQuery) Offset(offset int) *AgeKeyQuery {
|
|
akq.ctx.Offset = &offset
|
|
return akq
|
|
}
|
|
|
|
// Unique configures the query builder to filter duplicate records on query.
|
|
// By default, unique is set to true, and can be disabled using this method.
|
|
func (akq *AgeKeyQuery) Unique(unique bool) *AgeKeyQuery {
|
|
akq.ctx.Unique = &unique
|
|
return akq
|
|
}
|
|
|
|
// Order specifies how the records should be ordered.
|
|
func (akq *AgeKeyQuery) Order(o ...agekey.OrderOption) *AgeKeyQuery {
|
|
akq.order = append(akq.order, o...)
|
|
return akq
|
|
}
|
|
|
|
// QueryUser chains the current query on the "user" edge.
|
|
func (akq *AgeKeyQuery) QueryUser() *UserQuery {
|
|
query := (&UserClient{config: akq.config}).Query()
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
if err := akq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
selector := akq.sqlQuery(ctx)
|
|
if err := selector.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(agekey.Table, agekey.FieldID, selector),
|
|
sqlgraph.To(user.Table, user.FieldID),
|
|
sqlgraph.Edge(sqlgraph.O2O, true, agekey.UserTable, agekey.UserColumn),
|
|
)
|
|
fromU = sqlgraph.SetNeighbors(akq.driver.Dialect(), step)
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first AgeKey entity from the query.
|
|
// Returns a *NotFoundError when no AgeKey was found.
|
|
func (akq *AgeKeyQuery) First(ctx context.Context) (*AgeKey, error) {
|
|
nodes, err := akq.Limit(1).All(setContextOp(ctx, akq.ctx, "First"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{agekey.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (akq *AgeKeyQuery) FirstX(ctx context.Context) *AgeKey {
|
|
node, err := akq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first AgeKey ID from the query.
|
|
// Returns a *NotFoundError when no AgeKey ID was found.
|
|
func (akq *AgeKeyQuery) FirstID(ctx context.Context) (id uuid.UUID, err error) {
|
|
var ids []uuid.UUID
|
|
if ids, err = akq.Limit(1).IDs(setContextOp(ctx, akq.ctx, "FirstID")); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{agekey.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (akq *AgeKeyQuery) FirstIDX(ctx context.Context) uuid.UUID {
|
|
id, err := akq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single AgeKey entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when more than one AgeKey entity is found.
|
|
// Returns a *NotFoundError when no AgeKey entities are found.
|
|
func (akq *AgeKeyQuery) Only(ctx context.Context) (*AgeKey, error) {
|
|
nodes, err := akq.Limit(2).All(setContextOp(ctx, akq.ctx, "Only"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{agekey.Label}
|
|
default:
|
|
return nil, &NotSingularError{agekey.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (akq *AgeKeyQuery) OnlyX(ctx context.Context) *AgeKey {
|
|
node, err := akq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only AgeKey ID in the query.
|
|
// Returns a *NotSingularError when more than one AgeKey ID is found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (akq *AgeKeyQuery) OnlyID(ctx context.Context) (id uuid.UUID, err error) {
|
|
var ids []uuid.UUID
|
|
if ids, err = akq.Limit(2).IDs(setContextOp(ctx, akq.ctx, "OnlyID")); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{agekey.Label}
|
|
default:
|
|
err = &NotSingularError{agekey.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (akq *AgeKeyQuery) OnlyIDX(ctx context.Context) uuid.UUID {
|
|
id, err := akq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of AgeKeys.
|
|
func (akq *AgeKeyQuery) All(ctx context.Context) ([]*AgeKey, error) {
|
|
ctx = setContextOp(ctx, akq.ctx, "All")
|
|
if err := akq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
qr := querierAll[[]*AgeKey, *AgeKeyQuery]()
|
|
return withInterceptors[[]*AgeKey](ctx, akq, qr, akq.inters)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (akq *AgeKeyQuery) AllX(ctx context.Context) []*AgeKey {
|
|
nodes, err := akq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of AgeKey IDs.
|
|
func (akq *AgeKeyQuery) IDs(ctx context.Context) (ids []uuid.UUID, err error) {
|
|
if akq.ctx.Unique == nil && akq.path != nil {
|
|
akq.Unique(true)
|
|
}
|
|
ctx = setContextOp(ctx, akq.ctx, "IDs")
|
|
if err = akq.Select(agekey.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (akq *AgeKeyQuery) IDsX(ctx context.Context) []uuid.UUID {
|
|
ids, err := akq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (akq *AgeKeyQuery) Count(ctx context.Context) (int, error) {
|
|
ctx = setContextOp(ctx, akq.ctx, "Count")
|
|
if err := akq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return withInterceptors[int](ctx, akq, querierCount[*AgeKeyQuery](), akq.inters)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (akq *AgeKeyQuery) CountX(ctx context.Context) int {
|
|
count, err := akq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (akq *AgeKeyQuery) Exist(ctx context.Context) (bool, error) {
|
|
ctx = setContextOp(ctx, akq.ctx, "Exist")
|
|
switch _, err := akq.FirstID(ctx); {
|
|
case IsNotFound(err):
|
|
return false, nil
|
|
case err != nil:
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
default:
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (akq *AgeKeyQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := akq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the AgeKeyQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (akq *AgeKeyQuery) Clone() *AgeKeyQuery {
|
|
if akq == nil {
|
|
return nil
|
|
}
|
|
return &AgeKeyQuery{
|
|
config: akq.config,
|
|
ctx: akq.ctx.Clone(),
|
|
order: append([]agekey.OrderOption{}, akq.order...),
|
|
inters: append([]Interceptor{}, akq.inters...),
|
|
predicates: append([]predicate.AgeKey{}, akq.predicates...),
|
|
withUser: akq.withUser.Clone(),
|
|
// clone intermediate query.
|
|
sql: akq.sql.Clone(),
|
|
path: akq.path,
|
|
}
|
|
}
|
|
|
|
// WithUser tells the query-builder to eager-load the nodes that are connected to
|
|
// the "user" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (akq *AgeKeyQuery) WithUser(opts ...func(*UserQuery)) *AgeKeyQuery {
|
|
query := (&UserClient{config: akq.config}).Query()
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
akq.withUser = query
|
|
return akq
|
|
}
|
|
|
|
// GroupBy is used to group vertices by one or more fields/columns.
|
|
// It is often used with aggregate functions, like: count, max, mean, min, sum.
|
|
//
|
|
// Example:
|
|
//
|
|
// var v []struct {
|
|
// Key []byte `json:"key,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.AgeKey.Query().
|
|
// GroupBy(agekey.FieldKey).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
func (akq *AgeKeyQuery) GroupBy(field string, fields ...string) *AgeKeyGroupBy {
|
|
akq.ctx.Fields = append([]string{field}, fields...)
|
|
grbuild := &AgeKeyGroupBy{build: akq}
|
|
grbuild.flds = &akq.ctx.Fields
|
|
grbuild.label = agekey.Label
|
|
grbuild.scan = grbuild.Scan
|
|
return grbuild
|
|
}
|
|
|
|
// Select allows the selection one or more fields/columns for the given query,
|
|
// instead of selecting all fields in the entity.
|
|
//
|
|
// Example:
|
|
//
|
|
// var v []struct {
|
|
// Key []byte `json:"key,omitempty"`
|
|
// }
|
|
//
|
|
// client.AgeKey.Query().
|
|
// Select(agekey.FieldKey).
|
|
// Scan(ctx, &v)
|
|
func (akq *AgeKeyQuery) Select(fields ...string) *AgeKeySelect {
|
|
akq.ctx.Fields = append(akq.ctx.Fields, fields...)
|
|
sbuild := &AgeKeySelect{AgeKeyQuery: akq}
|
|
sbuild.label = agekey.Label
|
|
sbuild.flds, sbuild.scan = &akq.ctx.Fields, sbuild.Scan
|
|
return sbuild
|
|
}
|
|
|
|
// Aggregate returns a AgeKeySelect configured with the given aggregations.
|
|
func (akq *AgeKeyQuery) Aggregate(fns ...AggregateFunc) *AgeKeySelect {
|
|
return akq.Select().Aggregate(fns...)
|
|
}
|
|
|
|
func (akq *AgeKeyQuery) prepareQuery(ctx context.Context) error {
|
|
for _, inter := range akq.inters {
|
|
if inter == nil {
|
|
return fmt.Errorf("ent: uninitialized interceptor (forgotten import ent/runtime?)")
|
|
}
|
|
if trv, ok := inter.(Traverser); ok {
|
|
if err := trv.Traverse(ctx, akq); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
for _, f := range akq.ctx.Fields {
|
|
if !agekey.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if akq.path != nil {
|
|
prev, err := akq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
akq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (akq *AgeKeyQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*AgeKey, error) {
|
|
var (
|
|
nodes = []*AgeKey{}
|
|
_spec = akq.querySpec()
|
|
loadedTypes = [1]bool{
|
|
akq.withUser != nil,
|
|
}
|
|
)
|
|
_spec.ScanValues = func(columns []string) ([]any, error) {
|
|
return (*AgeKey).scanValues(nil, columns)
|
|
}
|
|
_spec.Assign = func(columns []string, values []any) error {
|
|
node := &AgeKey{config: akq.config}
|
|
nodes = append(nodes, node)
|
|
node.Edges.loadedTypes = loadedTypes
|
|
return node.assignValues(columns, values)
|
|
}
|
|
for i := range hooks {
|
|
hooks[i](ctx, _spec)
|
|
}
|
|
if err := sqlgraph.QueryNodes(ctx, akq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
if query := akq.withUser; query != nil {
|
|
if err := akq.loadUser(ctx, query, nodes, nil,
|
|
func(n *AgeKey, e *User) { n.Edges.User = e }); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (akq *AgeKeyQuery) loadUser(ctx context.Context, query *UserQuery, nodes []*AgeKey, init func(*AgeKey), assign func(*AgeKey, *User)) error {
|
|
ids := make([]uuid.UUID, 0, len(nodes))
|
|
nodeids := make(map[uuid.UUID][]*AgeKey)
|
|
for i := range nodes {
|
|
fk := nodes[i].Owner
|
|
if _, ok := nodeids[fk]; !ok {
|
|
ids = append(ids, fk)
|
|
}
|
|
nodeids[fk] = append(nodeids[fk], nodes[i])
|
|
}
|
|
if len(ids) == 0 {
|
|
return nil
|
|
}
|
|
query.Where(user.IDIn(ids...))
|
|
neighbors, err := query.All(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, n := range neighbors {
|
|
nodes, ok := nodeids[n.ID]
|
|
if !ok {
|
|
return fmt.Errorf(`unexpected foreign-key "owner" returned %v`, n.ID)
|
|
}
|
|
for i := range nodes {
|
|
assign(nodes[i], n)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (akq *AgeKeyQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := akq.querySpec()
|
|
_spec.Node.Columns = akq.ctx.Fields
|
|
if len(akq.ctx.Fields) > 0 {
|
|
_spec.Unique = akq.ctx.Unique != nil && *akq.ctx.Unique
|
|
}
|
|
return sqlgraph.CountNodes(ctx, akq.driver, _spec)
|
|
}
|
|
|
|
func (akq *AgeKeyQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := sqlgraph.NewQuerySpec(agekey.Table, agekey.Columns, sqlgraph.NewFieldSpec(agekey.FieldID, field.TypeUUID))
|
|
_spec.From = akq.sql
|
|
if unique := akq.ctx.Unique; unique != nil {
|
|
_spec.Unique = *unique
|
|
} else if akq.path != nil {
|
|
_spec.Unique = true
|
|
}
|
|
if fields := akq.ctx.Fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, agekey.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != agekey.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
if akq.withUser != nil {
|
|
_spec.Node.AddColumnOnce(agekey.FieldOwner)
|
|
}
|
|
}
|
|
if ps := akq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := akq.ctx.Limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := akq.ctx.Offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := akq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (akq *AgeKeyQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(akq.driver.Dialect())
|
|
t1 := builder.Table(agekey.Table)
|
|
columns := akq.ctx.Fields
|
|
if len(columns) == 0 {
|
|
columns = agekey.Columns
|
|
}
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
if akq.sql != nil {
|
|
selector = akq.sql
|
|
selector.Select(selector.Columns(columns...)...)
|
|
}
|
|
if akq.ctx.Unique != nil && *akq.ctx.Unique {
|
|
selector.Distinct()
|
|
}
|
|
for _, p := range akq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range akq.order {
|
|
p(selector)
|
|
}
|
|
if offset := akq.ctx.Offset; offset != nil {
|
|
// limit is mandatory for offset clause. We start
|
|
// with default value, and override it below if needed.
|
|
selector.Offset(*offset).Limit(math.MaxInt32)
|
|
}
|
|
if limit := akq.ctx.Limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// AgeKeyGroupBy is the group-by builder for AgeKey entities.
|
|
type AgeKeyGroupBy struct {
|
|
selector
|
|
build *AgeKeyQuery
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
func (akgb *AgeKeyGroupBy) Aggregate(fns ...AggregateFunc) *AgeKeyGroupBy {
|
|
akgb.fns = append(akgb.fns, fns...)
|
|
return akgb
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (akgb *AgeKeyGroupBy) Scan(ctx context.Context, v any) error {
|
|
ctx = setContextOp(ctx, akgb.build.ctx, "GroupBy")
|
|
if err := akgb.build.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*AgeKeyQuery, *AgeKeyGroupBy](ctx, akgb.build, akgb, akgb.build.inters, v)
|
|
}
|
|
|
|
func (akgb *AgeKeyGroupBy) sqlScan(ctx context.Context, root *AgeKeyQuery, v any) error {
|
|
selector := root.sqlQuery(ctx).Select()
|
|
aggregation := make([]string, 0, len(akgb.fns))
|
|
for _, fn := range akgb.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
columns := make([]string, 0, len(*akgb.flds)+len(akgb.fns))
|
|
for _, f := range *akgb.flds {
|
|
columns = append(columns, selector.C(f))
|
|
}
|
|
columns = append(columns, aggregation...)
|
|
selector.Select(columns...)
|
|
}
|
|
selector.GroupBy(selector.Columns(*akgb.flds...)...)
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := akgb.build.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
// AgeKeySelect is the builder for selecting fields of AgeKey entities.
|
|
type AgeKeySelect struct {
|
|
*AgeKeyQuery
|
|
selector
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
func (aks *AgeKeySelect) Aggregate(fns ...AggregateFunc) *AgeKeySelect {
|
|
aks.fns = append(aks.fns, fns...)
|
|
return aks
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (aks *AgeKeySelect) Scan(ctx context.Context, v any) error {
|
|
ctx = setContextOp(ctx, aks.ctx, "Select")
|
|
if err := aks.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*AgeKeyQuery, *AgeKeySelect](ctx, aks.AgeKeyQuery, aks, aks.inters, v)
|
|
}
|
|
|
|
func (aks *AgeKeySelect) sqlScan(ctx context.Context, root *AgeKeyQuery, v any) error {
|
|
selector := root.sqlQuery(ctx)
|
|
aggregation := make([]string, 0, len(aks.fns))
|
|
for _, fn := range aks.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
switch n := len(*aks.selector.flds); {
|
|
case n == 0 && len(aggregation) > 0:
|
|
selector.Select(aggregation...)
|
|
case n != 0 && len(aggregation) > 0:
|
|
selector.AppendSelect(aggregation...)
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := aks.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|