Update dependencies
This commit is contained in:
parent
4fa72e8065
commit
9c6a81437c
33 changed files with 122 additions and 122 deletions
|
|
@ -10,7 +10,7 @@ final class SingleValueEncoder: ValueEncoder {
|
|||
let codingPath: [any CodingKey]
|
||||
let userInfo: [CodingUserInfoKey: Any]
|
||||
|
||||
private(set) var sqliteData: SQLiteRawValue?
|
||||
private(set) var sqliteData: SQLiteValue?
|
||||
|
||||
// MARK: - Inits
|
||||
|
||||
|
|
@ -34,8 +34,8 @@ final class SingleValueEncoder: ValueEncoder {
|
|||
try dateEncoder.encode(date, to: self)
|
||||
}
|
||||
|
||||
func encode<T: SQLiteRawBindable>(_ value: T) throws {
|
||||
sqliteData = value.sqliteRawValue
|
||||
func encode<T: SQLiteBindable>(_ value: T) throws {
|
||||
sqliteData = value.sqliteValue
|
||||
}
|
||||
|
||||
func container<Key: CodingKey>(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue