You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by ja...@apache.org on 2013/08/23 02:06:46 UTC

[3/8] git commit: DRILL-169 Correct JSON serialization/deserialization for Project LOP

DRILL-169 Correct JSON serialization/deserialization for Project LOP


Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/c568eed2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/c568eed2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/c568eed2

Branch: refs/heads/master
Commit: c568eed28567f65b9e5931f7fea428497d0b5bfd
Parents: acf4781
Author: immars <im...@gmail.com>
Authored: Thu Aug 22 15:28:28 2013 -0700
Committer: Jacques Nadeau <ja...@apache.org>
Committed: Thu Aug 22 16:08:39 2013 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/drill/common/logical/data/Project.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/c568eed2/sandbox/prototype/common/src/main/java/org/apache/drill/common/logical/data/Project.java
----------------------------------------------------------------------
diff --git a/sandbox/prototype/common/src/main/java/org/apache/drill/common/logical/data/Project.java b/sandbox/prototype/common/src/main/java/org/apache/drill/common/logical/data/Project.java
index aca114f..109d218 100644
--- a/sandbox/prototype/common/src/main/java/org/apache/drill/common/logical/data/Project.java
+++ b/sandbox/prototype/common/src/main/java/org/apache/drill/common/logical/data/Project.java
@@ -47,7 +47,7 @@ public class Project extends SingleInputOperator {
     }
   }
 
-  @JsonProperty("exprs")
+  @JsonProperty("projections")
   public NamedExpression[] getSelections() {
     return selections;
   }