Github user hyunsik commented on a diff in the pull request:
https://github.com/apache/tajo/pull/719#discussion_r38721641
--- Diff:
tajo-catalog/tajo-catalog-common/src/main/java/org/apache/tajo/catalog/MetadataProvider.java
---
@@ -31,9 +31,9 @@
String getDatabaseName();
- Collection<String> getCatalogs();
+ Collection<String> getSchemas();
- Collection<String> getTables(@Nullable String catalog);
+ Collection<String> getTables(@Nullable String schemaPattern, @Nullable
String tablePattern);
- TableDesc getTableDescriptor(String catalogName, String tableName)
throws UndefinedTablespaceException;
+ TableDesc getTableDescriptor(String schemaName, String tableName) throws
UndefinedTablespaceException;
--- End diff --
TableDesc was a abbr of TableDescriptor. For consistent, I'll change it to
TableDesc.
---
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.
---