Re-add correct case workspace file.
Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/9f69ed05 Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/9f69ed05 Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/9f69ed05 Branch: refs/heads/master Commit: 9f69ed05bdcdb3a9dd917c394d6aac3a5ddb6989 Parents: 4d699a3 Author: Jacques Nadeau <[email protected]> Authored: Sat Jul 27 10:38:11 2013 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Sat Jul 27 10:38:11 2013 -0700 ---------------------------------------------------------------------- .../apache/drill/exec/expr/annotations/Workspace.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/9f69ed05/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Workspace.java ---------------------------------------------------------------------- diff --git a/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Workspace.java b/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Workspace.java new file mode 100644 index 0000000..75c97b5 --- /dev/null +++ b/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Workspace.java @@ -0,0 +1,14 @@ +package org.apache.drill.exec.expr.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Describes the field will provide output from the given function. + */ +@Retention(RetentionPolicy.RUNTIME) +@Target({ElementType.FIELD}) +public @interface Workspace { +}
