Skip to content

Commit

Permalink
SQLiteRow.sql(decoder:) needs to be public for the benefit of FluentS…
Browse files Browse the repository at this point in the history
…QLiteDriver.
  • Loading branch information
gwynne committed May 2, 2024
1 parent ee587c2 commit c68a05c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SQLiteKit/SQLiteRow+SQLRow.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ extension SQLiteRow {
/// - Parameter decoder: An ``SQLiteDataDecoder`` used to translate `SQLiteData` values into output values in
/// `SQLRow`s.
/// - Returns: An instance of `SQLRow` which accesses the same data as `self`.
func sql(decoder: SQLiteDataDecoder = .init()) -> any SQLRow {
public func sql(decoder: SQLiteDataDecoder = .init()) -> any SQLRow {
SQLiteSQLRow(row: self, decoder: decoder)
}
}
Expand Down

0 comments on commit c68a05c

Please sign in to comment.