Github user bhavya411 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1581#discussion_r155492390
--- Diff:
integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataConnector.java
---
@@ -31,13 +31,13 @@
private static final Logger log = Logger.get(CarbondataConnector.class);
private final LifeCycleManager lifeCycleManager;
- private final CarbondataMetadata metadata;
+ private final ConnectorMetadata metadata;
--- End diff --
CarbonDataMetadata extends ConnectorMetaData, we should always code to
Interface hence have changed this, also this way in concurrency we are using
the standard Presto protocol and providing a ClassLoaderSafeConnectorMetadata
---