Skip to content

Commit

Permalink
Merge pull request #47 from amingso/main
Browse files Browse the repository at this point in the history
Add SetTotalRowsIgnored(boolean ignored) (#46)
  • Loading branch information
chengyunyong committed Dec 6, 2022
2 parents bc40126 + 10b3133 commit 9c70be6
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 9c70be6

Please sign in to comment.