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

    https://github.com/apache/tajo/pull/890#discussion_r46517789
  
    --- Diff: 
tajo-catalog/tajo-catalog-drivers/tajo-hive/src/test/java/org/apache/tajo/catalog/store/TestHiveCatalogStore.java
 ---
    @@ -416,8 +416,8 @@ private void testAddPartition(URI uri, String 
tableName, String partitionName) t
     
         List<PartitionKeyProto> partitionKeyList = new ArrayList<>();
         String[] partitionNames = partitionName.split("/");
    -    for(int i = 0; i < partitionNames.length; i++) {
    -      String[] eachPartitionName = partitionNames[i].split("=");
    +    for (String partitionName1 : partitionNames) {
    --- End diff --
    
    ```partitionName``` is already in use as parameter of 
```testAddPartition()``` . So, I'll rename ```partitionName1``` to ```Name``` 
as you mentioned.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to