mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-30 00:32:26 -05:00
update bun library -> v1.0.4
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
This commit is contained in:
parent
2b14b20802
commit
bdcc090851
87 changed files with 538 additions and 503 deletions
9
vendor/github.com/uptrace/bun/dialect/dialect.go
generated
vendored
9
vendor/github.com/uptrace/bun/dialect/dialect.go
generated
vendored
|
|
@ -8,10 +8,8 @@ func (n Name) String() string {
|
|||
return "pg"
|
||||
case SQLite:
|
||||
return "sqlite"
|
||||
case MySQL5:
|
||||
return "mysql5"
|
||||
case MySQL8:
|
||||
return "mysql8"
|
||||
case MySQL:
|
||||
return "mysql"
|
||||
default:
|
||||
return "invalid"
|
||||
}
|
||||
|
|
@ -21,6 +19,5 @@ const (
|
|||
Invalid Name = iota
|
||||
PG
|
||||
SQLite
|
||||
MySQL5
|
||||
MySQL8
|
||||
MySQL
|
||||
)
|
||||
|
|
|
|||
5
vendor/github.com/uptrace/bun/dialect/feature/feature.go
generated
vendored
5
vendor/github.com/uptrace/bun/dialect/feature/feature.go
generated
vendored
|
|
@ -4,10 +4,9 @@ import "github.com/uptrace/bun/internal"
|
|||
|
||||
type Feature = internal.Flag
|
||||
|
||||
const DefaultFeatures = Returning | TableCascade
|
||||
|
||||
const (
|
||||
Returning Feature = 1 << iota
|
||||
CTE Feature = 1 << iota
|
||||
Returning
|
||||
DefaultPlaceholder
|
||||
DoubleColonCast
|
||||
ValuesRow
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue