Repository: calcite Updated Branches: refs/heads/master 025eaf118 -> ea4095ad4
[CALCITE-1787] Add ThetaSketch and HyperUnique support to Calcite via rolled up columns (Zain Humayun) * Fixes mvn site Project: http://git-wip-us.apache.org/repos/asf/calcite/repo Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/ea4095ad Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/ea4095ad Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/ea4095ad Branch: refs/heads/master Commit: ea4095ad41e38415d7bdd67e2a2fe1764043b0bc Parents: 025eaf1 Author: Zain Humayun <[email protected]> Authored: Thu Aug 17 10:34:41 2017 -0700 Committer: Jesus Camacho Rodriguez <[email protected]> Committed: Thu Aug 17 10:34:41 2017 -0700 ---------------------------------------------------------------------- core/src/main/java/org/apache/calcite/schema/Table.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/calcite/blob/ea4095ad/core/src/main/java/org/apache/calcite/schema/Table.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/calcite/schema/Table.java b/core/src/main/java/org/apache/calcite/schema/Table.java index 6f9066c..33185db 100644 --- a/core/src/main/java/org/apache/calcite/schema/Table.java +++ b/core/src/main/java/org/apache/calcite/schema/Table.java @@ -74,7 +74,7 @@ public interface Table { * * @param column The column name for which {@code isRolledUp} is true * @param call The aggregate call - * @param parent Parent node of {@param call} in the {@link SqlNode} tree + * @param parent Parent node of {@code call} in the {@link SqlNode} tree * @param config Config settings. May be null * @return true iff the given aggregate call is valid * */
