Skip to content

Commit

Permalink
Add SetTotalRowsIgnored(boolean ignored) (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
amingso committed Dec 6, 2022
1 parent bc40126 commit 10b3133
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions page_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,8 @@ func (pb *PageBuilder) IgnoreTotalRows() *PageBuilder {
pb.condition.isTotalRowsIgnored = true
return pb
}

func (pb *PageBuilder) SetTotalRowsIgnored(ignored bool) *PageBuilder {
pb.condition.isTotalRowsIgnored = ignored
return pb
}

0 comments on commit 10b3133

Please sign in to comment.