@@ -35,7 +35,6 @@ public struct SQLiteCloudConfig: Sendable {
3535 public let nonlinearizable : Bool
3636 public let timeout : Int
3737 public let compression : Bool
38- public let sqliteMode : Bool
3938 public let zerotext : Bool
4039 public let memory : Bool
4140 public let dbCreate : Bool
@@ -59,7 +58,6 @@ public struct SQLiteCloudConfig: Sendable {
5958 nonlinearizable: Bool = false ,
6059 timeout: Int = 0 ,
6160 compression: Bool = false ,
62- sqliteMode: Bool = false ,
6361 zerotext: Bool = false ,
6462 memory: Bool = false ,
6563 dbCreate: Bool = false ,
@@ -82,7 +80,6 @@ public struct SQLiteCloudConfig: Sendable {
8280 self . nonlinearizable = nonlinearizable
8381 self . timeout = timeout
8482 self . compression = compression
85- self . sqliteMode = sqliteMode
8683 self . zerotext = zerotext
8784 self . memory = memory
8885 self . dbCreate = dbCreate
@@ -130,7 +127,6 @@ public struct SQLiteCloudConfig: Sendable {
130127 // in query
131128 self . timeout = UrlParser . parse ( items: queryItems, name: " timeout " )
132129 self . compression = UrlParser . parse ( items: queryItems, name: " compression " )
133- self . sqliteMode = UrlParser . parse ( items: queryItems, name: " sqliteMode " )
134130 self . zerotext = UrlParser . parse ( items: queryItems, name: " zerotext " )
135131 self . memory = UrlParser . parse ( items: queryItems, name: " memory " )
136132 self . dbCreate = UrlParser . parse ( items: queryItems, name: " create " )
0 commit comments