diff options
| author | 2022-04-24 12:26:22 +0200 | |
|---|---|---|
| committer | 2022-04-24 12:26:22 +0200 | |
| commit | 88979b35d462516e1765524d70a41c0d26eec911 (patch) | |
| tree | fd37cb19317217e226ee7717824f24031f53b031 /vendor/github.com/uptrace/bun/dialect/feature | |
| parent | Revert "[chore] Tidy up federating db locks a tiny bit (#472)" (#479) (diff) | |
| download | gotosocial-88979b35d462516e1765524d70a41c0d26eec911.tar.xz | |
[chore] Update bun and sqlite dependencies (#478)
* update bun + sqlite versions
* step bun to v1.1.3
Diffstat (limited to 'vendor/github.com/uptrace/bun/dialect/feature')
| -rw-r--r-- | vendor/github.com/uptrace/bun/dialect/feature/feature.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/uptrace/bun/dialect/feature/feature.go b/vendor/github.com/uptrace/bun/dialect/feature/feature.go index 92d43ce21..510d6e5de 100644 --- a/vendor/github.com/uptrace/bun/dialect/feature/feature.go +++ b/vendor/github.com/uptrace/bun/dialect/feature/feature.go @@ -6,18 +6,27 @@ type Feature = internal.Flag const ( CTE Feature = 1 << iota + WithValues Returning + InsertReturning + Output // mssql DefaultPlaceholder DoubleColonCast ValuesRow UpdateMultiTable InsertTableAlias + UpdateTableAlias DeleteTableAlias AutoIncrement + Identity TableCascade TableIdentity TableTruncate InsertOnConflict // INSERT ... ON CONFLICT InsertOnDuplicateKey // INSERT ... ON DUPLICATE KEY InsertIgnore // INSERT IGNORE ... + TableNotExists + OffsetFetch + SelectExists + UpdateFromTable ) |
