Skip to content
Open
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
3 changes: 2 additions & 1 deletion Sources/CassandraClient/Statement.swift
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ extension CassandraClient {
return cass_statement_bind_collection(self.rawPointer, index, collection)
}

func setPagingSize(_ pagingSize: Int32) throws {
/// Sets the paging size of the returned paginated results.
public func setPagingSize(_ pagingSize: Int32) throws {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we use Int instead here? It should be preferred for public APIs.

try checkResult { cass_statement_set_paging_size(self.rawPointer, pagingSize) }
}

Expand Down