-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#116: controlCol -> measuredCol #118
Conversation
JaCoCo agent module code coverage report - spark:2 - scala 2.12.18
|
JaCoCo server module code coverage report - scala 2.12.18
|
.agg(sum(col(aggregatedColumnName))) | ||
.collect()(0)(0) | ||
val resultValue = if (value == null) "" else value.toString | ||
ResultOfMeasurement(resultValue, ResultValueType.String) | ||
} | ||
} | ||
object SumOfHashesOfColumn extends MeasureType { | ||
def apply(controlCol: String): SumOfHashesOfColumn = { | ||
SumOfHashesOfColumn(controlCol, measureName, resultValueType) | ||
def apply(measuredCol: String): SumOfHashesOfColumn = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not to rename to measuredColumn
to keep it consistent all around?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
true point, done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- code reviewed
- pulled
- built
- run
Closes #116