mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
622 lines
16 KiB
Go
622 lines
16 KiB
Go
// Copyright 2019-present Facebook Inc. All rights reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package entv2
|
|
|
|
import (
|
|
"context"
|
|
"database/sql/driver"
|
|
"fmt"
|
|
"math"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/entc/integration/migrate/entv2/blog"
|
|
"entgo.io/ent/entc/integration/migrate/entv2/predicate"
|
|
"entgo.io/ent/entc/integration/migrate/entv2/user"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// BlogQuery is the builder for querying Blog entities.
|
|
type BlogQuery struct {
|
|
config
|
|
limit *int
|
|
offset *int
|
|
unique *bool
|
|
order []OrderFunc
|
|
fields []string
|
|
inters []Interceptor
|
|
predicates []predicate.Blog
|
|
withAdmins *UserQuery
|
|
// intermediate query (i.e. traversal path).
|
|
sql *sql.Selector
|
|
path func(context.Context) (*sql.Selector, error)
|
|
}
|
|
|
|
// Where adds a new predicate for the BlogQuery builder.
|
|
func (bq *BlogQuery) Where(ps ...predicate.Blog) *BlogQuery {
|
|
bq.predicates = append(bq.predicates, ps...)
|
|
return bq
|
|
}
|
|
|
|
// Limit the number of records to be returned by this query.
|
|
func (bq *BlogQuery) Limit(limit int) *BlogQuery {
|
|
bq.limit = &limit
|
|
return bq
|
|
}
|
|
|
|
// Offset to start from.
|
|
func (bq *BlogQuery) Offset(offset int) *BlogQuery {
|
|
bq.offset = &offset
|
|
return bq
|
|
}
|
|
|
|
// 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 (bq *BlogQuery) Unique(unique bool) *BlogQuery {
|
|
bq.unique = &unique
|
|
return bq
|
|
}
|
|
|
|
// Order specifies how the records should be ordered.
|
|
func (bq *BlogQuery) Order(o ...OrderFunc) *BlogQuery {
|
|
bq.order = append(bq.order, o...)
|
|
return bq
|
|
}
|
|
|
|
// QueryAdmins chains the current query on the "admins" edge.
|
|
func (bq *BlogQuery) QueryAdmins() *UserQuery {
|
|
query := (&UserClient{config: bq.config}).Query()
|
|
query.path = func(ctx context.Context) (fromU *sql.Selector, err error) {
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
selector := bq.sqlQuery(ctx)
|
|
if err := selector.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(blog.Table, blog.FieldID, selector),
|
|
sqlgraph.To(user.Table, user.FieldID),
|
|
sqlgraph.Edge(sqlgraph.O2M, false, blog.AdminsTable, blog.AdminsColumn),
|
|
)
|
|
fromU = sqlgraph.SetNeighbors(bq.driver.Dialect(), step)
|
|
return fromU, nil
|
|
}
|
|
return query
|
|
}
|
|
|
|
// First returns the first Blog entity from the query.
|
|
// Returns a *NotFoundError when no Blog was found.
|
|
func (bq *BlogQuery) First(ctx context.Context) (*Blog, error) {
|
|
nodes, err := bq.Limit(1).All(newQueryContext(ctx, TypeBlog, "First"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nil, &NotFoundError{blog.Label}
|
|
}
|
|
return nodes[0], nil
|
|
}
|
|
|
|
// FirstX is like First, but panics if an error occurs.
|
|
func (bq *BlogQuery) FirstX(ctx context.Context) *Blog {
|
|
node, err := bq.First(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// FirstID returns the first Blog ID from the query.
|
|
// Returns a *NotFoundError when no Blog ID was found.
|
|
func (bq *BlogQuery) FirstID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = bq.Limit(1).IDs(newQueryContext(ctx, TypeBlog, "FirstID")); err != nil {
|
|
return
|
|
}
|
|
if len(ids) == 0 {
|
|
err = &NotFoundError{blog.Label}
|
|
return
|
|
}
|
|
return ids[0], nil
|
|
}
|
|
|
|
// FirstIDX is like FirstID, but panics if an error occurs.
|
|
func (bq *BlogQuery) FirstIDX(ctx context.Context) int {
|
|
id, err := bq.FirstID(ctx)
|
|
if err != nil && !IsNotFound(err) {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// Only returns a single Blog entity found by the query, ensuring it only returns one.
|
|
// Returns a *NotSingularError when more than one Blog entity is found.
|
|
// Returns a *NotFoundError when no Blog entities are found.
|
|
func (bq *BlogQuery) Only(ctx context.Context) (*Blog, error) {
|
|
nodes, err := bq.Limit(2).All(newQueryContext(ctx, TypeBlog, "Only"))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
switch len(nodes) {
|
|
case 1:
|
|
return nodes[0], nil
|
|
case 0:
|
|
return nil, &NotFoundError{blog.Label}
|
|
default:
|
|
return nil, &NotSingularError{blog.Label}
|
|
}
|
|
}
|
|
|
|
// OnlyX is like Only, but panics if an error occurs.
|
|
func (bq *BlogQuery) OnlyX(ctx context.Context) *Blog {
|
|
node, err := bq.Only(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// OnlyID is like Only, but returns the only Blog ID in the query.
|
|
// Returns a *NotSingularError when more than one Blog ID is found.
|
|
// Returns a *NotFoundError when no entities are found.
|
|
func (bq *BlogQuery) OnlyID(ctx context.Context) (id int, err error) {
|
|
var ids []int
|
|
if ids, err = bq.Limit(2).IDs(newQueryContext(ctx, TypeBlog, "OnlyID")); err != nil {
|
|
return
|
|
}
|
|
switch len(ids) {
|
|
case 1:
|
|
id = ids[0]
|
|
case 0:
|
|
err = &NotFoundError{blog.Label}
|
|
default:
|
|
err = &NotSingularError{blog.Label}
|
|
}
|
|
return
|
|
}
|
|
|
|
// OnlyIDX is like OnlyID, but panics if an error occurs.
|
|
func (bq *BlogQuery) OnlyIDX(ctx context.Context) int {
|
|
id, err := bq.OnlyID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return id
|
|
}
|
|
|
|
// All executes the query and returns a list of Blogs.
|
|
func (bq *BlogQuery) All(ctx context.Context) ([]*Blog, error) {
|
|
ctx = newQueryContext(ctx, TypeBlog, "All")
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
qr := querierAll[[]*Blog, *BlogQuery]()
|
|
return withInterceptors[[]*Blog](ctx, bq, qr, bq.inters)
|
|
}
|
|
|
|
// AllX is like All, but panics if an error occurs.
|
|
func (bq *BlogQuery) AllX(ctx context.Context) []*Blog {
|
|
nodes, err := bq.All(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return nodes
|
|
}
|
|
|
|
// IDs executes the query and returns a list of Blog IDs.
|
|
func (bq *BlogQuery) IDs(ctx context.Context) ([]int, error) {
|
|
var ids []int
|
|
ctx = newQueryContext(ctx, TypeBlog, "IDs")
|
|
if err := bq.Select(blog.FieldID).Scan(ctx, &ids); err != nil {
|
|
return nil, err
|
|
}
|
|
return ids, nil
|
|
}
|
|
|
|
// IDsX is like IDs, but panics if an error occurs.
|
|
func (bq *BlogQuery) IDsX(ctx context.Context) []int {
|
|
ids, err := bq.IDs(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return ids
|
|
}
|
|
|
|
// Count returns the count of the given query.
|
|
func (bq *BlogQuery) Count(ctx context.Context) (int, error) {
|
|
ctx = newQueryContext(ctx, TypeBlog, "Count")
|
|
if err := bq.prepareQuery(ctx); err != nil {
|
|
return 0, err
|
|
}
|
|
return withInterceptors[int](ctx, bq, querierCount[*BlogQuery](), bq.inters)
|
|
}
|
|
|
|
// CountX is like Count, but panics if an error occurs.
|
|
func (bq *BlogQuery) CountX(ctx context.Context) int {
|
|
count, err := bq.Count(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return count
|
|
}
|
|
|
|
// Exist returns true if the query has elements in the graph.
|
|
func (bq *BlogQuery) Exist(ctx context.Context) (bool, error) {
|
|
ctx = newQueryContext(ctx, TypeBlog, "Exist")
|
|
switch _, err := bq.FirstID(ctx); {
|
|
case IsNotFound(err):
|
|
return false, nil
|
|
case err != nil:
|
|
return false, fmt.Errorf("entv2: check existence: %w", err)
|
|
default:
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
// ExistX is like Exist, but panics if an error occurs.
|
|
func (bq *BlogQuery) ExistX(ctx context.Context) bool {
|
|
exist, err := bq.Exist(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return exist
|
|
}
|
|
|
|
// Clone returns a duplicate of the BlogQuery builder, including all associated steps. It can be
|
|
// used to prepare common query builders and use them differently after the clone is made.
|
|
func (bq *BlogQuery) Clone() *BlogQuery {
|
|
if bq == nil {
|
|
return nil
|
|
}
|
|
return &BlogQuery{
|
|
config: bq.config,
|
|
limit: bq.limit,
|
|
offset: bq.offset,
|
|
order: append([]OrderFunc{}, bq.order...),
|
|
inters: append([]Interceptor{}, bq.inters...),
|
|
predicates: append([]predicate.Blog{}, bq.predicates...),
|
|
withAdmins: bq.withAdmins.Clone(),
|
|
// clone intermediate query.
|
|
sql: bq.sql.Clone(),
|
|
path: bq.path,
|
|
unique: bq.unique,
|
|
}
|
|
}
|
|
|
|
// WithAdmins tells the query-builder to eager-load the nodes that are connected to
|
|
// the "admins" edge. The optional arguments are used to configure the query builder of the edge.
|
|
func (bq *BlogQuery) WithAdmins(opts ...func(*UserQuery)) *BlogQuery {
|
|
query := (&UserClient{config: bq.config}).Query()
|
|
for _, opt := range opts {
|
|
opt(query)
|
|
}
|
|
bq.withAdmins = query
|
|
return bq
|
|
}
|
|
|
|
// 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 {
|
|
// Oid int `json:"oid,omitempty"`
|
|
// Count int `json:"count,omitempty"`
|
|
// }
|
|
//
|
|
// client.Blog.Query().
|
|
// GroupBy(blog.FieldOid).
|
|
// Aggregate(entv2.Count()).
|
|
// Scan(ctx, &v)
|
|
func (bq *BlogQuery) GroupBy(field string, fields ...string) *BlogGroupBy {
|
|
bq.fields = append([]string{field}, fields...)
|
|
grbuild := &BlogGroupBy{build: bq}
|
|
grbuild.flds = &bq.fields
|
|
grbuild.label = blog.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 {
|
|
// Oid int `json:"oid,omitempty"`
|
|
// }
|
|
//
|
|
// client.Blog.Query().
|
|
// Select(blog.FieldOid).
|
|
// Scan(ctx, &v)
|
|
func (bq *BlogQuery) Select(fields ...string) *BlogSelect {
|
|
bq.fields = append(bq.fields, fields...)
|
|
sbuild := &BlogSelect{BlogQuery: bq}
|
|
sbuild.label = blog.Label
|
|
sbuild.flds, sbuild.scan = &bq.fields, sbuild.Scan
|
|
return sbuild
|
|
}
|
|
|
|
// Aggregate returns a BlogSelect configured with the given aggregations.
|
|
func (bq *BlogQuery) Aggregate(fns ...AggregateFunc) *BlogSelect {
|
|
return bq.Select().Aggregate(fns...)
|
|
}
|
|
|
|
func (bq *BlogQuery) prepareQuery(ctx context.Context) error {
|
|
for _, inter := range bq.inters {
|
|
if inter == nil {
|
|
return fmt.Errorf("entv2: uninitialized interceptor (forgotten import entv2/runtime?)")
|
|
}
|
|
if trv, ok := inter.(Traverser); ok {
|
|
if err := trv.Traverse(ctx, bq); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
for _, f := range bq.fields {
|
|
if !blog.ValidColumn(f) {
|
|
return &ValidationError{Name: f, err: fmt.Errorf("entv2: invalid field %q for query", f)}
|
|
}
|
|
}
|
|
if bq.path != nil {
|
|
prev, err := bq.path(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
bq.sql = prev
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (bq *BlogQuery) sqlAll(ctx context.Context, hooks ...queryHook) ([]*Blog, error) {
|
|
var (
|
|
nodes = []*Blog{}
|
|
_spec = bq.querySpec()
|
|
loadedTypes = [1]bool{
|
|
bq.withAdmins != nil,
|
|
}
|
|
)
|
|
_spec.ScanValues = func(columns []string) ([]any, error) {
|
|
return (*Blog).scanValues(nil, columns)
|
|
}
|
|
_spec.Assign = func(columns []string, values []any) error {
|
|
node := &Blog{config: bq.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, bq.driver, _spec); err != nil {
|
|
return nil, err
|
|
}
|
|
if len(nodes) == 0 {
|
|
return nodes, nil
|
|
}
|
|
if query := bq.withAdmins; query != nil {
|
|
if err := bq.loadAdmins(ctx, query, nodes,
|
|
func(n *Blog) { n.Edges.Admins = []*User{} },
|
|
func(n *Blog, e *User) { n.Edges.Admins = append(n.Edges.Admins, e) }); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return nodes, nil
|
|
}
|
|
|
|
func (bq *BlogQuery) loadAdmins(ctx context.Context, query *UserQuery, nodes []*Blog, init func(*Blog), assign func(*Blog, *User)) error {
|
|
fks := make([]driver.Value, 0, len(nodes))
|
|
nodeids := make(map[int]*Blog)
|
|
for i := range nodes {
|
|
fks = append(fks, nodes[i].ID)
|
|
nodeids[nodes[i].ID] = nodes[i]
|
|
if init != nil {
|
|
init(nodes[i])
|
|
}
|
|
}
|
|
query.withFKs = true
|
|
query.Where(predicate.User(func(s *sql.Selector) {
|
|
s.Where(sql.InValues(blog.AdminsColumn, fks...))
|
|
}))
|
|
neighbors, err := query.All(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, n := range neighbors {
|
|
fk := n.blog_admins
|
|
if fk == nil {
|
|
return fmt.Errorf(`foreign-key "blog_admins" is nil for node %v`, n.ID)
|
|
}
|
|
node, ok := nodeids[*fk]
|
|
if !ok {
|
|
return fmt.Errorf(`unexpected foreign-key "blog_admins" returned %v for node %v`, *fk, n.ID)
|
|
}
|
|
assign(node, n)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (bq *BlogQuery) sqlCount(ctx context.Context) (int, error) {
|
|
_spec := bq.querySpec()
|
|
_spec.Node.Columns = bq.fields
|
|
if len(bq.fields) > 0 {
|
|
_spec.Unique = bq.unique != nil && *bq.unique
|
|
}
|
|
return sqlgraph.CountNodes(ctx, bq.driver, _spec)
|
|
}
|
|
|
|
func (bq *BlogQuery) querySpec() *sqlgraph.QuerySpec {
|
|
_spec := &sqlgraph.QuerySpec{
|
|
Node: &sqlgraph.NodeSpec{
|
|
Table: blog.Table,
|
|
Columns: blog.Columns,
|
|
ID: &sqlgraph.FieldSpec{
|
|
Type: field.TypeInt,
|
|
Column: blog.FieldID,
|
|
},
|
|
},
|
|
From: bq.sql,
|
|
Unique: true,
|
|
}
|
|
if unique := bq.unique; unique != nil {
|
|
_spec.Unique = *unique
|
|
}
|
|
if fields := bq.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, blog.FieldID)
|
|
for i := range fields {
|
|
if fields[i] != blog.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, fields[i])
|
|
}
|
|
}
|
|
}
|
|
if ps := bq.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if limit := bq.limit; limit != nil {
|
|
_spec.Limit = *limit
|
|
}
|
|
if offset := bq.offset; offset != nil {
|
|
_spec.Offset = *offset
|
|
}
|
|
if ps := bq.order; len(ps) > 0 {
|
|
_spec.Order = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
return _spec
|
|
}
|
|
|
|
func (bq *BlogQuery) sqlQuery(ctx context.Context) *sql.Selector {
|
|
builder := sql.Dialect(bq.driver.Dialect())
|
|
t1 := builder.Table(blog.Table)
|
|
columns := bq.fields
|
|
if len(columns) == 0 {
|
|
columns = blog.Columns
|
|
}
|
|
selector := builder.Select(t1.Columns(columns...)...).From(t1)
|
|
if bq.sql != nil {
|
|
selector = bq.sql
|
|
selector.Select(selector.Columns(columns...)...)
|
|
}
|
|
if bq.unique != nil && *bq.unique {
|
|
selector.Distinct()
|
|
}
|
|
for _, p := range bq.predicates {
|
|
p(selector)
|
|
}
|
|
for _, p := range bq.order {
|
|
p(selector)
|
|
}
|
|
if offset := bq.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 := bq.limit; limit != nil {
|
|
selector.Limit(*limit)
|
|
}
|
|
return selector
|
|
}
|
|
|
|
// BlogGroupBy is the group-by builder for Blog entities.
|
|
type BlogGroupBy struct {
|
|
selector
|
|
build *BlogQuery
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the group-by query.
|
|
func (bgb *BlogGroupBy) Aggregate(fns ...AggregateFunc) *BlogGroupBy {
|
|
bgb.fns = append(bgb.fns, fns...)
|
|
return bgb
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (bgb *BlogGroupBy) Scan(ctx context.Context, v any) error {
|
|
ctx = newQueryContext(ctx, TypeBlog, "GroupBy")
|
|
if err := bgb.build.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*BlogQuery, *BlogGroupBy](ctx, bgb.build, bgb, bgb.build.inters, v)
|
|
}
|
|
|
|
func (bgb *BlogGroupBy) sqlScan(ctx context.Context, root *BlogQuery, v any) error {
|
|
selector := root.sqlQuery(ctx).Select()
|
|
aggregation := make([]string, 0, len(bgb.fns))
|
|
for _, fn := range bgb.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
if len(selector.SelectedColumns()) == 0 {
|
|
columns := make([]string, 0, len(*bgb.flds)+len(bgb.fns))
|
|
for _, f := range *bgb.flds {
|
|
columns = append(columns, selector.C(f))
|
|
}
|
|
columns = append(columns, aggregation...)
|
|
selector.Select(columns...)
|
|
}
|
|
selector.GroupBy(selector.Columns(*bgb.flds...)...)
|
|
if err := selector.Err(); err != nil {
|
|
return err
|
|
}
|
|
rows := &sql.Rows{}
|
|
query, args := selector.Query()
|
|
if err := bgb.build.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|
|
|
|
// BlogSelect is the builder for selecting fields of Blog entities.
|
|
type BlogSelect struct {
|
|
*BlogQuery
|
|
selector
|
|
}
|
|
|
|
// Aggregate adds the given aggregation functions to the selector query.
|
|
func (bs *BlogSelect) Aggregate(fns ...AggregateFunc) *BlogSelect {
|
|
bs.fns = append(bs.fns, fns...)
|
|
return bs
|
|
}
|
|
|
|
// Scan applies the selector query and scans the result into the given value.
|
|
func (bs *BlogSelect) Scan(ctx context.Context, v any) error {
|
|
ctx = newQueryContext(ctx, TypeBlog, "Select")
|
|
if err := bs.prepareQuery(ctx); err != nil {
|
|
return err
|
|
}
|
|
return scanWithInterceptors[*BlogQuery, *BlogSelect](ctx, bs.BlogQuery, bs, bs.inters, v)
|
|
}
|
|
|
|
func (bs *BlogSelect) sqlScan(ctx context.Context, root *BlogQuery, v any) error {
|
|
selector := root.sqlQuery(ctx)
|
|
aggregation := make([]string, 0, len(bs.fns))
|
|
for _, fn := range bs.fns {
|
|
aggregation = append(aggregation, fn(selector))
|
|
}
|
|
switch n := len(*bs.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 := bs.driver.Query(ctx, query, args, rows); err != nil {
|
|
return err
|
|
}
|
|
defer rows.Close()
|
|
return sql.ScanSlice(rows, v)
|
|
}
|