Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Following major changes to API were made:
generator
removed fromfield
,count
andcountPerField
,generator.options
now moved to same level as nameoptions
source
,generate
anddelete
dataSource
,step
andfields
field
instead ofcolumn
col
is also changed tofield
schema
removed,fields
moves down one level...Col
->...Field
(i.e.isEqualCol
->isEqualField
)isNot...
->is...(negate)
(i.e.isNotNull
->isNull(true)
)not...
->...(negate)
(i.e.notStartsWith("a")
->startsWith("a", true)
)equalToOr...
->...(strictly)
(i.e.equalToOrLessThan(10)
->lessThan(10, false)
)notIn("a", "b")
->in(List("a", "b"), true)
upstreamValidation...withValidation(...)
->upstreamValidation...validations(...)
matchesList(regexes, matchAll, negate)
hasTypes(types, negate)
distinctInSet(set, negate)
distinctContainsSet(set, negate)
distinctEqual(set, negate)
maxBetween(min, max, negate)
meanBetween(min, max, negate)
medianBetween(min, max, negate)
minBetween(min, max, negate)
stdDevBetween(min, max, negate)
sumBetween(min, max, negate)
lengthBetween(min, max, negate)
lengthEqual(value, negate)
isDecreasing(strictly)
isIncreasing(strictly)
isJsonParsable(negate)
matchJsonSchema(schema, negate)
matchDateTimeFormat(format, negate)
mostCommonValueInSet(values, negate)
uniqueValuesProportionBetween(min, max, negate)
quantileValuesBetween(quantileRanges, negate)