aboutsummaryrefslogtreecommitdiff
path: root/dialect.go
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2026-05-12 13:23:39 +0200
committerStefan Majewsky <majewsky@gmx.net>2026-05-12 13:25:00 +0200
commit80c3fadf24fe9d784d876eec247fd6799af49c8a (patch)
tree81b527133fdf192f187aaa4f5cf4f5187bb1a45d /dialect.go
parent14ae9e47a2a303726f8e5141cfd46bb22e0f51c6 (diff)
downloadgo-oblast-80c3fadf24fe9d784d876eec247fd6799af49c8a.tar.gz
clarify docstrings, put down TODOs based on review feedback
Diffstat (limited to 'dialect.go')
-rw-r--r--dialect.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dialect.go b/dialect.go
index 6505199..5a96cef 100644
--- a/dialect.go
+++ b/dialect.go
@@ -88,9 +88,9 @@ func (d postgresDialect) UpsertClause(pkColumns, otherColumns []string) string {
}
}
-// SqliteDialect is the dialect of SQLite 3.24.0+ databases.
+// SqliteDialect is the dialect of SQLite 3.35.0+ databases.
//
-// This dialect does NOT support ancient SQLite versions (3.24.0 was released 2018-06-04)
+// This dialect does NOT support ancient SQLite versions (3.35.0 was released 2021-03-12)
// that do not understand the "INSERT ... RETURNING" syntax.
func SqliteDialect() Dialect {
return sqliteDialect{}