655 lines
17 KiB
Go
655 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.harting.dev/csgowtf/csgowtfd/ent/matchplayer"
|
|
"git.harting.dev/csgowtf/csgowtfd/ent/predicate"
|
|
"git.harting.dev/csgowtf/csgowtfd/ent/spray"
|
|
)
|
|
|
|
// SprayQuery is the builder for querying Spray entities.
|
|
type SprayQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
unique *bool
|
|
order []OrderFunc
|
|
fields []string
|
|
predicates []predicate.Spray
|
|
withMatchPlayers *MatchPlayerQuery
|
|
withFKs bool
|
|
modifiers []func(*sql.Selector)
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the SprayQuery builder.
|
|
func (sq *SprayQuery) Where(ps ...predicate.Spray) *SprayQuery {
|
|
sq.predicates = append(sq.predicates, ps...)
|
|
return sq
|
|
}
|
|
|
|
// Limit adds a limit step to the query.
|
|
func (sq *SprayQuery) Limit(limit int) *SprayQuery {
|
|
sq.limit = &limit
|
|
return sq
|
|
}
|
|
|
|
// Offset adds an offset step to the query.
|
|
func (sq *SprayQuery) Offset(offset int) *SprayQuery {
|
|
sq.offset = &offset
|
|
return sq
|
|
}
|
|
|
|
// 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 (sq *SprayQuery) Unique(unique bool) *SprayQuery {
|
|
sq.unique = &unique
|
|
return sq
|
|
}
|
|
|
|
// Order adds an order step to the query.
|
|
func (sq *SprayQuery) Order(o ...OrderFunc) *SprayQuery {
|
|
sq.order = append(sq.order, o...)
|
|
return sq
|
|
}
|
|
|
|
// QueryMatchPlayers chains the current query on the "match_players" edge.
|
|
func (sq *SprayQuery) QueryMatchPlayers() *MatchPlayerQuery {
|
|
query := &MatchPlayerQuery{config: sq.config}
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
selector := sq.sqlQuery(ctx)
|
|
if err := selector.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(spray.Table, spray.FieldID, selector),
|
|
sqlgraph.To(matchplayer.Table, matchplayer.FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, spray.MatchPlayersTable, spray.MatchPlayersColumn),
|
|
)
|
|
fromU = sqlgraph.SetNeighbors(sq.driver.Dialect(), step)
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first Spray entity from the query.
|
|
// Returns a *NotFoundError when no Spray was found.
|
|
func (sq *SprayQuery) First(ctx context.Context) (*Spray, error) {
|
|
nodes, err := sq.Limit(1).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{spray.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (sq *SprayQuery) FirstX(ctx context.Context) *Spray {
|
|
node, err := sq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first Spray ID from the query.
|
|
// Returns a *NotFoundError when no Spray ID was found.
|
|
func (sq *SprayQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = sq.Limit(1).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{spray.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (sq *SprayQuery) FirstIDX(ctx context.Context) int {
|
|
id, err := sq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single Spray entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when more than one Spray entity is found.
|
|
// Returns a *NotFoundError when no Spray entities are found.
|
|
func (sq *SprayQuery) Only(ctx context.Context) (*Spray, error) {
|
|
nodes, err := sq.Limit(2).All(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{spray.Label}
|
|
default:
|
|
return nil, &NotSingularError{spray.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (sq *SprayQuery) OnlyX(ctx context.Context) *Spray {
|
|
node, err := sq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only Spray ID in the query.
|
|
// Returns a *NotSingularError when more than one Spray ID is found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (sq *SprayQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = sq.Limit(2).IDs(ctx); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{spray.Label}
|
|
default:
|
|
err = &NotSingularError{spray.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (sq *SprayQuery) OnlyIDX(ctx context.Context) int {
|
|
id, err := sq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of Sprays.
|
|
func (sq *SprayQuery) All(ctx context.Context) ([]*Spray, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.sqlAll(ctx)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (sq *SprayQuery) AllX(ctx context.Context) []*Spray {
|
|
nodes, err := sq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Spray IDs.
|
|
func (sq *SprayQuery) IDs(ctx context.Context) ([]int, error) {
|
|
var ids []int
|
|
if err := sq.Select(spray.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (sq *SprayQuery) IDsX(ctx context.Context) []int {
|
|
ids, err := sq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (sq *SprayQuery) Count(ctx context.Context) (int, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return sq.sqlCount(ctx)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (sq *SprayQuery) CountX(ctx context.Context) int {
|
|
count, err := sq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (sq *SprayQuery) Exist(ctx context.Context) (bool, error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return false, err
|
|
}
|
|
return sq.sqlExist(ctx)
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (sq *SprayQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := sq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the SprayQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (sq *SprayQuery) Clone() *SprayQuery {
|
|
if sq == nil {
|
|
return nil
|
|
}
|
|
return &SprayQuery{
|
|
config: sq.config,
|
|
limit: sq.limit,
|
|
offset: sq.offset,
|
|
order: append([]OrderFunc{}, sq.order...),
|
|
predicates: append([]predicate.Spray{}, sq.predicates...),
|
|
withMatchPlayers: sq.withMatchPlayers.Clone(),
|
|
// clone intermediate query.
|
|
sql: sq.sql.Clone(),
|
|
path: sq.path,
|
|
unique: sq.unique,
|
|
}
|
|
}
|
|
|
|
// WithMatchPlayers tells the query-builder to eager-load the nodes that are connected to
|
|
// the "match_players" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (sq *SprayQuery) WithMatchPlayers(opts ...func(*MatchPlayerQuery)) *SprayQuery {
|
|
query := &MatchPlayerQuery{config: sq.config}
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
sq.withMatchPlayers = query
|
|
return sq
|
|
}
|
|
|
|
// 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 {
|
|
// Weapon int `json:"weapon,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.Spray.Query().
|
|
// GroupBy(spray.FieldWeapon).
|
|
// Aggregate(ent.Count()).
|
|
// Scan(ctx, &v)
|
|
func (sq *SprayQuery) GroupBy(field string, fields ...string) *SprayGroupBy {
|
|
grbuild := &SprayGroupBy{config: sq.config}
|
|
grbuild.fields = append([]string{field}, fields...)
|
|
grbuild.path = func(ctx context.Context) (prev *sql.Selector, err error) {
|
|
if err := sq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return sq.sqlQuery(ctx), nil
|
|
}
|
|
grbuild.label = spray.Label
|
|
grbuild.flds, grbuild.scan = &grbuild.fields, 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 {
|
|
// Weapon int `json:"weapon,omitempty"`
|
|
// }
|
|
//
|
|
// client.Spray.Query().
|
|
// Select(spray.FieldWeapon).
|
|
// Scan(ctx, &v)
|
|
func (sq *SprayQuery) Select(fields ...string) *SpraySelect {
|
|
sq.fields = append(sq.fields, fields...)
|
|
selbuild := &SpraySelect{SprayQuery: sq}
|
|
selbuild.label = spray.Label
|
|
selbuild.flds, selbuild.scan = &sq.fields, selbuild.Scan
|
|
return selbuild
|
|
}
|
|
|
|
// Aggregate returns a SpraySelect configured with the given aggregations.
|
|
func (sq *SprayQuery) Aggregate(fns ...AggregateFunc) *SpraySelect {
|
|
return sq.Select().Aggregate(fns...)
|
|
}
|
|
|
|
func (sq *SprayQuery) prepareQuery(ctx context.Context) error {
|
|
for _, f := range sq.fields {
|
|
if !spray.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if sq.path != nil {
|
|
prev, err := sq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sq *SprayQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Spray, error) {
|
|
var (
|
|
nodes = []*Spray{}
|
|
withFKs = sq.withFKs
|
|
_spec = sq.querySpec()
|
|
loadedTypes = [1]bool{
|
|
sq.withMatchPlayers != nil,
|
|
}
|
|
)
|
|
if sq.withMatchPlayers != nil {
|
|
withFKs = true
|
|
}
|
|
if withFKs {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, spray.ForeignKeys...)
|
|
}
|
|
_spec.ScanValues = func(columns []string) ([]any, error) {
|
|
return (*Spray).scanValues(nil, columns)
|
|
}
|
|
_spec.Assign = func(columns []string, values []any) error {
|
|
node := &Spray{config: sq.config}
|
|
nodes = append(nodes, node)
|
|
node.Edges.loadedTypes = loadedTypes
|
|
return node.assignValues(columns, values)
|
|
}
|
|
if len(sq.modifiers) > 0 {
|
|
_spec.Modifiers = sq.modifiers
|
|
}
|
|
for i := range hooks {
|
|
hooks[i](ctx, _spec)
|
|
}
|
|
if err := sqlgraph.QueryNodes(ctx, sq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
if query := sq.withMatchPlayers; query != nil {
|
|
if err := sq.loadMatchPlayers(ctx, query, nodes, nil,
|
|
func(n *Spray, e *MatchPlayer) { n.Edges.MatchPlayers = e }); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (sq *SprayQuery) loadMatchPlayers(ctx context.Context, query *MatchPlayerQuery, nodes []*Spray, init func(*Spray), assign func(*Spray, *MatchPlayer)) error {
|
|
ids := make([]int, 0, len(nodes))
|
|
nodeids := make(map[int][]*Spray)
|
|
for i := range nodes {
|
|
if nodes[i].match_player_spray == nil {
|
|
continue
|
|
}
|
|
fk := *nodes[i].match_player_spray
|
|
if _, ok := nodeids[fk]; !ok {
|
|
ids = append(ids, fk)
|
|
}
|
|
nodeids[fk] = append(nodeids[fk], nodes[i])
|
|
}
|
|
query.Where(matchplayer.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 "match_player_spray" returned %v`, n.ID)
|
|
}
|
|
for i := range nodes {
|
|
assign(nodes[i], n)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (sq *SprayQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := sq.querySpec()
|
|
if len(sq.modifiers) > 0 {
|
|
_spec.Modifiers = sq.modifiers
|
|
}
|
|
_spec.Node.Columns = sq.fields
|
|
if len(sq.fields) > 0 {
|
|
_spec.Unique = sq.unique != nil && *sq.unique
|
|
}
|
|
return sqlgraph.CountNodes(ctx, sq.driver, _spec)
|
|
}
|
|
|
|
func (sq *SprayQuery) sqlExist(ctx context.Context) (bool, error) {
|
|
switch _, err := sq.FirstID(ctx); {
|
|
case IsNotFound(err):
|
|
return false, nil
|
|
case err != nil:
|
|
return false, fmt.Errorf("ent: check existence: %w", err)
|
|
default:
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
func (sq *SprayQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := &sqlgraph.QuerySpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: spray.Table,
|
|
Columns: spray.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: spray.FieldID,
|
|
},
|
|
},
|
|
From: sq.sql,
|
|
Unique: true,
|
|
}
|
|
if unique := sq.unique; unique != nil {
|
|
_spec.Unique = *unique
|
|
}
|
|
if fields := sq.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, spray.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != spray.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
}
|
|
if ps := sq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := sq.limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := sq.offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := sq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (sq *SprayQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(sq.driver.Dialect())
|
|
t1 := builder.Table(spray.Table)
|
|
columns := sq.fields
|
|
if len(columns) == 0 {
|
|
columns = spray.Columns
|
|
}
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
if sq.sql != nil {
|
|
selector = sq.sql
|
|
selector.Select(selector.Columns(columns...)...)
|
|
}
|
|
if sq.unique != nil && *sq.unique {
|
|
selector.Distinct()
|
|
}
|
|
for _, m := range sq.modifiers {
|
|
m(selector)
|
|
}
|
|
for _, p := range sq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range sq.order {
|
|
p(selector)
|
|
}
|
|
if offset := sq.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 := sq.limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// Modify adds a query modifier for attaching custom logic to queries.
|
|
func (sq *SprayQuery) Modify(modifiers ...func(s *sql.Selector)) *SpraySelect {
|
|
sq.modifiers = append(sq.modifiers, modifiers...)
|
|
return sq.Select()
|
|
}
|
|
|
|
// SprayGroupBy is the group-by builder for Spray entities.
|
|
type SprayGroupBy struct {
|
|
config
|
|
selector
|
|
fields []string
|
|
fns []AggregateFunc
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
func (sgb *SprayGroupBy) Aggregate(fns ...AggregateFunc) *SprayGroupBy {
|
|
sgb.fns = append(sgb.fns, fns...)
|
|
return sgb
|
|
}
|
|
|
|
// Scan applies the group-by query and scans the result into the given value.
|
|
func (sgb *SprayGroupBy) Scan(ctx context.Context, v any) error {
|
|
query, err := sgb.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sgb.sql = query
|
|
return sgb.sqlScan(ctx, v)
|
|
}
|
|
|
|
func (sgb *SprayGroupBy) sqlScan(ctx context.Context, v any) error {
|
|
for _, f := range sgb.fields {
|
|
if !spray.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("invalid field %q for group-by", f)}
|
|
}
|
|
}
|
|
selector := sgb.sqlQuery()
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := sgb.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
func (sgb *SprayGroupBy) sqlQuery() *sql.Selector {
|
|
selector := sgb.sql.Select()
|
|
aggregation := make([]string, 0, len(sgb.fns))
|
|
for _, fn := range sgb.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
columns := make([]string, 0, len(sgb.fields)+len(sgb.fns))
|
|
for _, f := range sgb.fields {
|
|
columns = append(columns, selector.C(f))
|
|
}
|
|
columns = append(columns, aggregation...)
|
|
selector.Select(columns...)
|
|
}
|
|
return selector.GroupBy(selector.Columns(sgb.fields...)...)
|
|
}
|
|
|
|
// SpraySelect is the builder for selecting fields of Spray entities.
|
|
type SpraySelect struct {
|
|
*SprayQuery
|
|
selector
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
func (ss *SpraySelect) Aggregate(fns ...AggregateFunc) *SpraySelect {
|
|
ss.fns = append(ss.fns, fns...)
|
|
return ss
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (ss *SpraySelect) Scan(ctx context.Context, v any) error {
|
|
if err := ss.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
ss.sql = ss.SprayQuery.sqlQuery(ctx)
|
|
return ss.sqlScan(ctx, v)
|
|
}
|
|
|
|
func (ss *SpraySelect) sqlScan(ctx context.Context, v any) error {
|
|
aggregation := make([]string, 0, len(ss.fns))
|
|
for _, fn := range ss.fns {
|
|
aggregation = append(aggregation, fn(ss.sql))
|
|
}
|
|
switch n := len(*ss.selector.flds); {
|
|
case n == 0 && len(aggregation) > 0:
|
|
ss.sql.Select(aggregation...)
|
|
case n != 0 && len(aggregation) > 0:
|
|
ss.sql.AppendSelect(aggregation...)
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := ss.sql.Query()
|
|
if err := ss.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
// Modify adds a query modifier for attaching custom logic to queries.
|
|
func (ss *SpraySelect) Modify(modifiers ...func(s *sql.Selector)) *SpraySelect {
|
|
ss.modifiers = append(ss.modifiers, modifiers...)
|
|
return ss
|
|
}
|