mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-16 10:13:02 -06:00
bumps uptrace/bun dependencies to v1.2.6 (#3569)
This commit is contained in:
parent
a444adee97
commit
3fceb5fc1a
68 changed files with 6517 additions and 194 deletions
7
vendor/github.com/uptrace/bun/schema/dialect.go
generated
vendored
7
vendor/github.com/uptrace/bun/schema/dialect.go
generated
vendored
|
|
@ -39,6 +39,9 @@ type Dialect interface {
|
|||
// is mandatory in queries that modify the schema (CREATE TABLE / ADD COLUMN, etc).
|
||||
// Dialects that do not have such requirement may return 0, which should be interpreted so by the caller.
|
||||
DefaultVarcharLen() int
|
||||
|
||||
// DefaultSchema should returns the name of the default database schema.
|
||||
DefaultSchema() string
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------------
|
||||
|
|
@ -185,3 +188,7 @@ func (d *nopDialect) DefaultVarcharLen() int {
|
|||
func (d *nopDialect) AppendSequence(b []byte, _ *Table, _ *Field) []byte {
|
||||
return b
|
||||
}
|
||||
|
||||
func (d *nopDialect) DefaultSchema() string {
|
||||
return "nop"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue