@@ -35,7 +35,6 @@ public struct SQLiteCloudConfig: Sendable {
35
35
public let nonlinearizable : Bool
36
36
public let timeout : Int
37
37
public let compression : Bool
38
- public let sqliteMode : Bool
39
38
public let zerotext : Bool
40
39
public let memory : Bool
41
40
public let dbCreate : Bool
@@ -59,7 +58,6 @@ public struct SQLiteCloudConfig: Sendable {
59
58
nonlinearizable: Bool = false ,
60
59
timeout: Int = 0 ,
61
60
compression: Bool = false ,
62
- sqliteMode: Bool = false ,
63
61
zerotext: Bool = false ,
64
62
memory: Bool = false ,
65
63
dbCreate: Bool = false ,
@@ -82,7 +80,6 @@ public struct SQLiteCloudConfig: Sendable {
82
80
self . nonlinearizable = nonlinearizable
83
81
self . timeout = timeout
84
82
self . compression = compression
85
- self . sqliteMode = sqliteMode
86
83
self . zerotext = zerotext
87
84
self . memory = memory
88
85
self . dbCreate = dbCreate
@@ -130,7 +127,6 @@ public struct SQLiteCloudConfig: Sendable {
130
127
// in query
131
128
self . timeout = UrlParser . parse ( items: queryItems, name: " timeout " )
132
129
self . compression = UrlParser . parse ( items: queryItems, name: " compression " )
133
- self . sqliteMode = UrlParser . parse ( items: queryItems, name: " sqliteMode " )
134
130
self . zerotext = UrlParser . parse ( items: queryItems, name: " zerotext " )
135
131
self . memory = UrlParser . parse ( items: queryItems, name: " memory " )
136
132
self . dbCreate = UrlParser . parse ( items: queryItems, name: " create " )
0 commit comments