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

    https://github.com/apache/tajo/pull/448#discussion_r27025505
  
    --- Diff: 
tajo-catalog/tajo-catalog-server/src/main/java/org/apache/tajo/catalog/store/MemStore.java
 ---
    @@ -498,37 +498,16 @@ public void dropPartitionMethod(String databaseName, 
String tableName) throws Ca
       }
     
       @Override
    -  public void addPartitions(CatalogProtos.PartitionsProto 
partitionDescList) throws CatalogException {
    +  public List<CatalogProtos.PartitionDescProto> getPartitions(String 
databaseName, String tableName) throws CatalogException {
         throw new RuntimeException("not supported!");
       }
     
       @Override
    -  public void addPartition(String databaseName, String tableName, 
CatalogProtos.PartitionDescProto
    -      partitionDescProto) throws CatalogException {
    +  public CatalogProtos.PartitionDescProto getPartition(String 
databaseName, String tableName,
    +                                                       String 
partitionName) throws CatalogException {
         throw new RuntimeException("not supported!");
    --- End diff --
    
    MemStore is used for tests, so we need to implement this function.


---
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