From 88979b35d462516e1765524d70a41c0d26eec911 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Sun, 24 Apr 2022 12:26:22 +0200 Subject: [chore] Update bun and sqlite dependencies (#478) * update bun + sqlite versions * step bun to v1.1.3 --- vendor/github.com/uptrace/bun/dialect/feature/feature.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'vendor/github.com/uptrace/bun/dialect/feature') 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 ) -- cgit v1.3