summaryrefslogtreecommitdiff
path: root/vendor/github.com/uptrace/bun/dialect/feature/feature.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/uptrace/bun/dialect/feature/feature.go')
-rw-r--r--vendor/github.com/uptrace/bun/dialect/feature/feature.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/github.com/uptrace/bun/dialect/feature/feature.go b/vendor/github.com/uptrace/bun/dialect/feature/feature.go
index 257e091fa..92d43ce21 100644
--- a/vendor/github.com/uptrace/bun/dialect/feature/feature.go
+++ b/vendor/github.com/uptrace/bun/dialect/feature/feature.go
@@ -17,5 +17,7 @@ const (
TableCascade
TableIdentity
TableTruncate
- OnDuplicateKey
+ InsertOnConflict // INSERT ... ON CONFLICT
+ InsertOnDuplicateKey // INSERT ... ON DUPLICATE KEY
+ InsertIgnore // INSERT IGNORE ...
)