Github user hyunsik commented on a diff in the pull request:
https://github.com/apache/tajo/pull/749#discussion_r39259558
--- Diff:
tajo-catalog/tajo-catalog-common/src/main/java/org/apache/tajo/catalog/CatalogService.java
---
@@ -169,7 +169,7 @@ PartitionDescProto getPartition(String databaseName,
String tableName, String pa
void addPartitions(String databaseName, String tableName,
List<PartitionDescProto> partitions
, boolean ifNotExists) throws UndefinedTableException,
DuplicatePartitionException, UndefinedPartitionMethodException,
UndefinedDatabaseException;
- boolean createIndex(IndexDesc index);
+ void createIndex(IndexDesc index) throws DuplicateIndexException;
--- End diff --
If index creation is based on table, it may need
``Undefined(Table|Database)Exception``.
---
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.
---