We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be22e0a + c7d5048 commit 79a41dcCopy full SHA for 79a41dc
GRDB/Core/TransactionObserver.swift
@@ -1252,16 +1252,16 @@ private struct CopiedDatabaseEventImpl: DatabaseEventImpl {
1252
1253
public struct DatabasePreUpdateEvent {
1254
1255
- /// An event kind
1256
- public enum Kind: CInt {
1257
- /// SQLITE_INSERT
1258
- case insert = 18
+ /// An event kind.
+ public enum Kind: CInt, Sendable {
+ /// An insertion event
+ case insert = 18 // SQLITE_INSERT
1259
1260
- /// SQLITE_DELETE
1261
- case delete = 9
+ /// A deletion event
+ case delete = 9 // SQLITE_DELETE
1262
1263
- /// SQLITE_UPDATE
1264
- case update = 23
+ /// An update event
+ case update = 23 // SQLITE_UPDATE
1265
}
1266
1267
/// The event kind
0 commit comments