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.go5
1 files changed, 4 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 e311394d5..0707c6f88 100644
--- a/vendor/github.com/uptrace/bun/dialect/feature/feature.go
+++ b/vendor/github.com/uptrace/bun/dialect/feature/feature.go
@@ -31,5 +31,8 @@ const (
UpdateFromTable
MSSavepoint
GeneratedIdentity
- CompositeIn // ... WHERE (A,B) IN ((N, NN), (N, NN)...)
+ CompositeIn // ... WHERE (A,B) IN ((N, NN), (N, NN)...)
+ UpdateOrderLimit // UPDATE ... ORDER BY ... LIMIT ...
+ DeleteOrderLimit // DELETE ... ORDER BY ... LIMIT ...
+ DeleteReturning
)