[ 
https://issues.apache.org/jira/browse/TAJO-1926?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14956629#comment-14956629
 ] 

ASF GitHub Bot commented on TAJO-1926:
--------------------------------------

Github user jihoonson commented on a diff in the pull request:

    https://github.com/apache/tajo/pull/824#discussion_r41976126
  
    --- Diff: 
tajo-core-tests/src/test/java/org/apache/tajo/engine/query/TestTablePartitions.java
 ---
    @@ -433,15 +433,8 @@ public final void 
testColumnPartitionedTableByThreeColumns() throws Exception {
           assertEquals(resultRows2.get(res.getDouble(4))[1], res.getInt(3));
         }
     
    -    res = executeString("select * from " + tableName + " WHERE (col1 ='1' 
or col1 = '100') and col3 > 20");
    -    String result = resultSetToString(res);
    -    String expectedResult = "col4,col1,col2,col3\n" +
    -      "-------------------------------\n" +
    -      "N,1,1,36.0\n";
    -    res.close();
    -    assertEquals(expectedResult, result);
    -
         res = executeString("SELECT col1, col2, col3 FROM " + tableName);
    +    String result = resultSetToString(res);
    --- End diff --
    
    Unused variable


> Disable partition pruning using catalog temporarily.
> ----------------------------------------------------
>
>                 Key: TAJO-1926
>                 URL: https://issues.apache.org/jira/browse/TAJO-1926
>             Project: Tajo
>          Issue Type: Sub-task
>          Components: Catalog, Physical Operator, Planner/Optimizer
>    Affects Versions: 0.11.0, 0.12.0
>            Reporter: Jaehwa Jung
>            Assignee: Jaehwa Jung
>            Priority: Critical
>             Fix For: 0.11.0
>
>
> We disabled alter table add partition temporarily at TAJO-1887. But when 
> adding partitions with dfs command for external partitioned table, there is 
> no way to add partition to catalog. As a result, users can't scan their 
> partitions which are added manually to file system. So, we need to disable 
> partition pruning using catalog until implement TAJO-1891.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to