-
Notifications
You must be signed in to change notification settings - Fork 353
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
Gh-2749: Hllp is not aggregated properly with TSV #2800
Merged
r32575
merged 4 commits into
v2-alpha
from
gh-2749-hllp-is-not-aggregated-properly-with-tsv
Nov 15, 2022
Merged
Gh-2749: Hllp is not aggregated properly with TSV #2800
r32575
merged 4 commits into
v2-alpha
from
gh-2749-hllp-is-not-aggregated-properly-with-tsv
Nov 15, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ntiated before being offered to HyperLogLogPlus
Codecov Report
@@ Coverage Diff @@
## v2-alpha #2800 +/- ##
===========================================
Coverage ? 56.47%
Complexity ? 2495
===========================================
Files ? 917
Lines ? 32316
Branches ? 3319
===========================================
Hits ? 18251
Misses ? 12673
Partials ? 1392 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
GCHQDeveloper314
changed the title
Hllp is not aggregated properly with TSV
Gh2749: Hllp is not aggregated properly with TSV
Nov 1, 2022
GCHQDeveloper314
changed the title
Gh2749: Hllp is not aggregated properly with TSV
Gh-2749: Hllp is not aggregated properly with TSV
Nov 1, 2022
t92549
reviewed
Nov 3, 2022
...fer/sketches/clearspring/cardinality/serialisation/json/HyperLogLogPlusJsonDeserialiser.java
Outdated
Show resolved
Hide resolved
...sketches/clearspring/cardinality/serialisation/json/HyperLogLogPlusJsonDeserialiserTest.java
Outdated
Show resolved
Hide resolved
...ketches/clearspring/cardinality/serialisation/json/HyperLogLogPlusJsonSerialisationTest.java
Outdated
Show resolved
Hide resolved
core/type/src/main/java/uk/gov/gchq/gaffer/types/TypeSubTypeValue.java
Outdated
Show resolved
Hide resolved
…d offers objects are not supported
t92549
approved these changes
Nov 11, 2022
lb324567
approved these changes
Nov 14, 2022
...sketches/clearspring/cardinality/serialisation/json/HyperLogLogPlusJsonDeserialiserTest.java
Outdated
Show resolved
Hide resolved
GCHQDeveloper314
approved these changes
Nov 14, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
HyperLogLogPlus
was attempting to add the text version of theJsonNode
which returned an empty string for an object. Have now reworked so theJsonNode
is now examined and if aclass
field is found attempts to instantiate the object and send this to theHyperLogLogPlus
.Related Issue