Skip to content

Commit a26500c

Browse files
committed
Fixed multiple inputs
1 parent a0e3171 commit a26500c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/Compiler/Gen/SwiftLanguage.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public struct SwiftLanguage: Language {
5454
default: "SQLAny"
5555
}
5656
case let .optional(ty): "\(builtinType(for: ty))?"
57-
case let .row(.unknown(ty)): "[\(builtinType(for: ty))]"
57+
case let .row(.unknown(ty)): "\(builtinType(for: ty))"
5858
case .var, .fn, .row, .error: "Any"
5959
case let .alias(_, alias):
6060
switch alias {

0 commit comments

Comments
 (0)