mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-31 21:52:24 -05:00
[chore] Bump database dependencies (#1164)
github.com/uptrace/bun v1.1.8 -> v1.1.9 github.com/uptrace/bun/pgdialect v1.1.8 -> v1.1.9 github.com/uptrace/bun/sqlitedialect v1.1.8 -> v1.1.9 modernc.org/sqlite v1.18.2 -> v1.19.5
This commit is contained in:
parent
fe39d50e09
commit
daf44ac2b7
529 changed files with 971879 additions and 1370194 deletions
5
vendor/github.com/uptrace/bun/schema/dialect.go
generated
vendored
5
vendor/github.com/uptrace/bun/schema/dialect.go
generated
vendored
|
|
@ -29,6 +29,7 @@ type Dialect interface {
|
|||
AppendString(b []byte, s string) []byte
|
||||
AppendBytes(b []byte, bs []byte) []byte
|
||||
AppendJSON(b, jsonb []byte) []byte
|
||||
AppendBool(b []byte, v bool) []byte
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
|
@ -126,6 +127,10 @@ func (BaseDialect) AppendJSON(b, jsonb []byte) []byte {
|
|||
return b
|
||||
}
|
||||
|
||||
func (BaseDialect) AppendBool(b []byte, v bool) []byte {
|
||||
return dialect.AppendBool(b, v)
|
||||
}
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
type nopDialect struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue