Skip to content

Commit

Permalink
HSEARCH-2172 Fix ElasticsearchNullValueIT.testProjectionOfNullValues
Browse files Browse the repository at this point in the history
There was an issue in GolfPlayer.Builder that altered the value of
GolfPlayer.active when it wasn't explicitly initialized.

The issue didn't show up before because the value was being initialized
with "false", which was indexed as null because of the bug we just
fixed.
  • Loading branch information
yrodiere authored and Sanne committed Dec 19, 2016
1 parent 76f29ab commit 8609861
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -212,7 +212,7 @@ public static class Builder {

private String firstName;
private String lastName;
private boolean active;
private Boolean active;
private Date dateOfBirth;
private Calendar subscriptionEndDate;
private double handicap;
Expand Down

0 comments on commit 8609861

Please sign in to comment.