Skip to content

Commit

Permalink
Fix Example HTTP connector
Browse files Browse the repository at this point in the history
It would previously fail with a JSON deserialization error.
  • Loading branch information
nezihyigitbasi authored and electrum committed Nov 25, 2015
1 parent 7646880 commit 2730161
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions presto-docs/src/main/sphinx/release/release-0.128.rst
Expand Up @@ -7,4 +7,6 @@ General Changes


* Fix cast from json to structural types when rows or maps have arrays, * Fix cast from json to structural types when rows or maps have arrays,
rows, or maps nested in them. rows, or maps nested in them.
* Fix Example HTTP connector.
It would previously fail with a JSON deserialization error.
* Optimize memory usage in TupleDomain. * Optimize memory usage in TupleDomain.
Expand Up @@ -32,7 +32,7 @@ public class ExampleSplit
private final String tableName; private final String tableName;
private final URI uri; private final URI uri;
private final boolean remotelyAccessible; private final boolean remotelyAccessible;
private final ImmutableList<HostAddress> addresses; private final List<HostAddress> addresses;


@JsonCreator @JsonCreator
public ExampleSplit( public ExampleSplit(
Expand Down

0 comments on commit 2730161

Please sign in to comment.