Skip to content

Commit

Permalink
Add missing JsonCreator annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
miniway authored and martint committed Aug 26, 2016
1 parent 0465683 commit aaf01fd
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
package com.facebook.presto.sql.planner.plan;

import com.facebook.presto.sql.planner.Symbol;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.collect.ListMultimap;

Expand All @@ -25,6 +26,7 @@
public class IntersectNode
extends SetOperationNode
{
@JsonCreator
public IntersectNode(
@JsonProperty("id") PlanNodeId id,
@JsonProperty("sources") List<PlanNode> sources,
Expand Down

0 comments on commit aaf01fd

Please sign in to comment.