gotosocial/vendor/github.com/uptrace/bun/dialect/feature/feature.go

24 lines
440 B
Go
Raw Normal View History

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
2021-11-27 14:26:58 +00:00
InsertOnConflict // INSERT ... ON CONFLICT
InsertOnDuplicateKey // INSERT ... ON DUPLICATE KEY
InsertIgnore // INSERT IGNORE ...
)