vyommani commented on code in PR #741:
URL: https://github.com/apache/ranger/pull/741#discussion_r2567422966
##########
agents-common/src/main/java/org/apache/ranger/plugin/util/SearchFilter.java:
##########
@@ -98,6 +100,8 @@ public class SearchFilter {
private Map<String, String> params;
private int startIndex;
private int maxRows = Integer.MAX_VALUE;
+ private int beginIndex = -1;
+ private int offsetIndex = -1;
Review Comment:
Since you've added new fields to the SearchFilter class, don't forget to
modify the copy constructor (public SearchFilter(SearchFilter other))
accordingly to ensure the new attributes are properly copied.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]