You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by mm...@apache.org on 2020/06/19 15:59:08 UTC

[calcite] branch master updated: [CALCITE-3907] Use username and password parameters on delegation

This is an automated email from the ASF dual-hosted git repository.

mmior pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new 3e98d75  [CALCITE-3907] Use username and password parameters on delegation
3e98d75 is described below

commit 3e98d75720218715fca0fefe0d5c898d750606ef
Author: Thomas Heinemann <th...@metronom.com>
AuthorDate: Thu Apr 9 11:07:20 2020 +0200

    [CALCITE-3907] Use username and password parameters on delegation
---
 .../main/java/org/apache/calcite/adapter/cassandra/CassandraSchema.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cassandra/src/main/java/org/apache/calcite/adapter/cassandra/CassandraSchema.java b/cassandra/src/main/java/org/apache/calcite/adapter/cassandra/CassandraSchema.java
index 17b5c70..d023bfa 100644
--- a/cassandra/src/main/java/org/apache/calcite/adapter/cassandra/CassandraSchema.java
+++ b/cassandra/src/main/java/org/apache/calcite/adapter/cassandra/CassandraSchema.java
@@ -114,7 +114,7 @@ public class CassandraSchema extends AbstractSchema {
    */
   public CassandraSchema(String host, String keyspace, String username, String password,
         SchemaPlus parentSchema, String name) {
-    this(host, DEFAULT_CASSANDRA_PORT, keyspace, null, null, parentSchema, name);
+    this(host, DEFAULT_CASSANDRA_PORT, keyspace, username, password, parentSchema, name);
   }
 
   /**