We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3199931 commit ca51034Copy full SHA for ca51034
google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/stages/SampleOptions.java
@@ -46,8 +46,8 @@ public static SampleOptions percentage(double percentage) {
46
return new SampleOptions(percentage, Mode.PERCENT);
47
}
48
49
- public static SampleOptions docLimit(int limit) {
50
- return new SampleOptions(limit, Mode.DOCUMENTS);
+ public static SampleOptions docLimit(int documents) {
+ return new SampleOptions(documents, Mode.DOCUMENTS);
51
52
53
Iterable<Value> getProtoArgs() {
0 commit comments