mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
bdcc090851
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
22 lines
312 B
Go
22 lines
312 B
Go
package feature
|
|
|
|
import "github.com/uptrace/bun/internal"
|
|
|
|
type Feature = internal.Flag
|
|
|
|
const (
|
|
CTE Feature = 1 << iota
|
|
Returning
|
|
DefaultPlaceholder
|
|
DoubleColonCast
|
|
ValuesRow
|
|
UpdateMultiTable
|
|
InsertTableAlias
|
|
DeleteTableAlias
|
|
AutoIncrement
|
|
TableCascade
|
|
TableIdentity
|
|
TableTruncate
|
|
OnDuplicateKey
|
|
)
|