Skip to content

Commit 525c917

Browse files
committed
Fix query execution caused by typo
1 parent ebfc243 commit 525c917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/MySQLBridge/Extensions/SwifQLable+Execute.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import SwifQL
1010
extension SwifQLable {
1111
@discardableResult
1212
public func execute(on conn: MySQLConnection) -> EventLoopFuture<[MySQLRow]> {
13-
let prepared = prepare(.psql).splitted
13+
let prepared = prepare(.mysql).splitted
1414
let binds: [MySQLData]
1515
do {
1616
binds = try prepared.values.map { try MySQLDataEncoder().encode($0) }

0 commit comments

Comments
 (0)