Skip to content

Commit

Permalink
fix docbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Ignition committed Jan 15, 2025
1 parent dc58cdb commit 479b6ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/SQLyra/DataFrame.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ extension PreparedStatement {

@available(macOS 12, iOS 15, tvOS 15, watchOS 8, *)
public struct ColumnValueTransformer: Sendable {
public static let string = ColumnValueTransformer(transform: \.string)
public static let int = ColumnValueTransformer(transform: \.int)
public static let double = ColumnValueTransformer(transform: \.double)
public static let blob = ColumnValueTransformer(transform: \.blob)
public static let string = ColumnValueTransformer { $0.string }
public static let int = ColumnValueTransformer { $0.int }
public static let double = ColumnValueTransformer { $0.double }
public static let blob = ColumnValueTransformer { $0.blob }

public static let defaults: [String: ColumnValueTransformer] = [
"INT": .int,
Expand Down

0 comments on commit 479b6ec

Please sign in to comment.