ygerzhedovich commented on code in PR #6581:
URL: https://github.com/apache/ignite-3/pull/6581#discussion_r2347999042
##########
modules/jdbc/src/main/java/org/apache/ignite/internal/jdbc/JdbcDatabaseMetadata.java:
##########
@@ -70,16 +72,23 @@ public class JdbcDatabaseMetadata implements
DatabaseMetaData {
/** Name of system view type. */
public static final String TYPE_VIEW = "VIEW";
- /** Connection. */
- private final JdbcConnection conn;
+ private final JdbcQueryEventHandler handler;
+
+ private final String url;
+
+ private final Connection connection;
/**
* Constructor.
*
- * @param conn Connection.
+ * @param handler Handler.
+ * @param url URL
+ * @param connection Connection
*/
- JdbcDatabaseMetadata(JdbcConnection conn) {
- this.conn = conn;
+ public JdbcDatabaseMetadata(JdbcQueryEventHandler handler, String url,
Connection connection) {
Review Comment:
What is the reason to make it public?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]