mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 22:42:25 -05:00
bumps uptrace/bun deps to v1.2.8 (#3698)
This commit is contained in:
parent
7b7fc528f1
commit
3617e27afa
35 changed files with 760 additions and 220 deletions
15
vendor/github.com/uptrace/bun/query_raw.go
generated
vendored
15
vendor/github.com/uptrace/bun/query_raw.go
generated
vendored
|
|
@ -15,23 +15,10 @@ type RawQuery struct {
|
|||
comment string
|
||||
}
|
||||
|
||||
// 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,
|
||||
db: db,
|
||||
},
|
||||
query: query,
|
||||
args: args,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue