Skip to content

Commit 848679b

Browse files
committed
tests passing
1 parent 085a1ae commit 848679b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Sources/FluentPostgreSQL/PostgreSQLDatabase+QuerySupporting.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ extension PostgreSQLDatabase: QuerySupporting {
1919
let modelData: [PostgreSQLData]
2020
if let model = query.data {
2121
let encoded = try CodableDataEncoder().encode(model)
22-
print(encoded)
2322
switch encoded {
2423
case .dictionary(let dict):
2524
sqlQuery.columns += dict.keys.map { key in
@@ -99,7 +98,6 @@ extension PostgreSQLDatabase: QuerySupporting {
9998
let codableDict = row.mapValues { psqlData -> CodableData in
10099
return .decoder(PostgreSQLDataDecoder(data: psqlData))
101100
}
102-
103101
do {
104102
let decoded = try CodableDataDecoder().decode(D.self, from: .dictionary(codableDict))
105103
pushStream.push(decoded)

0 commit comments

Comments
 (0)