mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
a156188b3e
* update dependencies, bump Go version to 1.19 * bump test image Go version * update golangci-lint * update gotosocial-drone-build * sign * linting, go fmt * update swagger docs * update swagger docs * whitespace * update contributing.md * fuckin whoopsie doopsie * linterino, linteroni * fix followrequest test not starting processor * fix other api/client tests not starting processor * fix remaining tests where processor not started * bump go-runners version * don't check last-webfingered-at, processor may have updated this * update swagger command * update bun to latest version * fix embed to work the same as before with new bun Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
66 lines
1.1 KiB
Go
66 lines
1.1 KiB
Go
package bun
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/uptrace/bun/schema"
|
|
)
|
|
|
|
type RawQuery struct {
|
|
baseQuery
|
|
|
|
query string
|
|
args []interface{}
|
|
}
|
|
|
|
// Deprecated: Use NewRaw instead. When add it to IDB, it conflicts with the sql.Conn#Raw
|
|
func (db *DB) Raw(query string, args ...interface{}) *RawQuery {
|
|
return &RawQuery{
|
|
baseQuery: baseQuery{
|
|
db: db,
|
|
conn: db.DB,
|
|
},
|
|
query: query,
|
|
args: args,
|
|
}
|
|
}
|
|
|
|
func NewRawQuery(db *DB, query string, args ...interface{}) *RawQuery {
|
|
return &RawQuery{
|
|
baseQuery: baseQuery{
|
|
db: db,
|
|
conn: db.DB,
|
|
},
|
|
query: query,
|
|
args: args,
|
|
}
|
|
}
|
|
|
|
func (q *RawQuery) Conn(db IConn) *RawQuery {
|
|
q.setConn(db)
|
|
return q
|
|
}
|
|
|
|
func (q *RawQuery) Scan(ctx context.Context, dest ...interface{}) error {
|
|
if q.err != nil {
|
|
return q.err
|
|
}
|
|
|
|
model, err := q.getModel(dest)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
query := q.db.format(q.query, q.args)
|
|
_, err = q.scan(ctx, q, query, model, true)
|
|
return err
|
|
}
|
|
|
|
func (q *RawQuery) AppendQuery(fmter schema.Formatter, b []byte) ([]byte, error) {
|
|
return fmter.AppendQuery(b, q.query, q.args...), nil
|
|
}
|
|
|
|
func (q *RawQuery) Operation() string {
|
|
return "SELECT"
|
|
}
|