Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/SparkConnect/SparkSession.swift
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public actor SparkSession {
/// - step: A value for the step.
/// - Returns: A ``DataFrame`` instance.
public func range(_ start: Int64, _ end: Int64, _ step: Int64 = 1) async throws -> DataFrame {
return try await DataFrame(spark: self, plan: client.getPlanRange(start, end, step))
return await DataFrame(spark: self, plan: client.getPlanRange(start, end, step))
}

/// Create a ``DataFrame`` for the given SQL statement.
Expand Down
Loading