aboutsummaryrefslogtreecommitdiff
path: root/dialect.go
diff options
context:
space:
mode:
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{}