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.
1 parent 085a1ae commit 848679bCopy full SHA for 848679b
Sources/FluentPostgreSQL/PostgreSQLDatabase+QuerySupporting.swift
@@ -19,7 +19,6 @@ extension PostgreSQLDatabase: QuerySupporting {
19
let modelData: [PostgreSQLData]
20
if let model = query.data {
21
let encoded = try CodableDataEncoder().encode(model)
22
- print(encoded)
23
switch encoded {
24
case .dictionary(let dict):
25
sqlQuery.columns += dict.keys.map { key in
@@ -99,7 +98,6 @@ extension PostgreSQLDatabase: QuerySupporting {
99
98
let codableDict = row.mapValues { psqlData -> CodableData in
100
return .decoder(PostgreSQLDataDecoder(data: psqlData))
101
}
102
-
103
do {
104
let decoded = try CodableDataDecoder().decode(D.self, from: .dictionary(codableDict))
105
pushStream.push(decoded)
0 commit comments