summaryrefslogtreecommitdiff
path: root/vendor/github.com/uptrace/bun/model_map.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-10-24 13:14:37 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-24 13:14:37 +0200
commit8b7c3507fe0c8f6e921ee2de2c170ef93eeb7275 (patch)
treee79e3f5a59fb8942de79955bd26bf665be0acce8 /vendor/github.com/uptrace/bun/model_map.go
parentdocs typo fix (#290) (diff)
downloadgotosocial-8b7c3507fe0c8f6e921ee2de2c170ef93eeb7275.tar.xz
upstep bun to v1.0.14 (#291)
Diffstat (limited to 'vendor/github.com/uptrace/bun/model_map.go')
-rw-r--r--vendor/github.com/uptrace/bun/model_map.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/uptrace/bun/model_map.go b/vendor/github.com/uptrace/bun/model_map.go
index 7262ddbc1..814d636e6 100644
--- a/vendor/github.com/uptrace/bun/model_map.go
+++ b/vendor/github.com/uptrace/bun/model_map.go
@@ -139,7 +139,7 @@ func (m *mapModel) appendColumnsValues(fmter schema.Formatter, b []byte) []byte
if isTemplate {
b = append(b, '?')
} else {
- b = fmter.Dialect().Append(fmter, b, m.m[k])
+ b = schema.Append(fmter, b, m.m[k])
}
}
@@ -167,7 +167,7 @@ func (m *mapModel) appendSet(fmter schema.Formatter, b []byte) []byte {
if isTemplate {
b = append(b, '?')
} else {
- b = fmter.Dialect().Append(fmter, b, m.m[k])
+ b = schema.Append(fmter, b, m.m[k])
}
}