Vendor packages update
This commit is contained in:
31
vendor/github.com/uptrace/bun/dialect/dialect.go
generated
vendored
Normal file
31
vendor/github.com/uptrace/bun/dialect/dialect.go
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
package dialect
|
||||
|
||||
type Name int
|
||||
|
||||
func (n Name) String() string {
|
||||
switch n {
|
||||
case Invalid:
|
||||
return "invalid"
|
||||
case PG:
|
||||
return "pg"
|
||||
case SQLite:
|
||||
return "sqlite"
|
||||
case MySQL:
|
||||
return "mysql"
|
||||
case MSSQL:
|
||||
return "mssql"
|
||||
case Oracle:
|
||||
return "oracle"
|
||||
default:
|
||||
return "custom"
|
||||
}
|
||||
}
|
||||
|
||||
const (
|
||||
Invalid Name = iota
|
||||
PG
|
||||
SQLite
|
||||
MySQL
|
||||
MSSQL
|
||||
Oracle
|
||||
)
|
||||
Reference in New Issue
Block a user