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

zabetak pushed a commit to branch branch-1.21
in repository https://gitbox.apache.org/repos/asf/calcite.git

commit 5c25c386dd70172f98d870ce72455fab897eb70a
Author: wenhuitang <wenhui_t...@yeah.net>
AuthorDate: Mon Sep 2 20:28:22 2019 +0800

    Remove the useless JdbcConvention out in descriptionPrefix for 
JdbcToEnumerableConverterRule (Wenhui Tang)
    
    Close apache/calcite#1435
---
 .../org/apache/calcite/adapter/jdbc/JdbcToEnumerableConverterRule.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/calcite/adapter/jdbc/JdbcToEnumerableConverterRule.java
 
b/core/src/main/java/org/apache/calcite/adapter/jdbc/JdbcToEnumerableConverterRule.java
index e685922..6ac2816 100644
--- 
a/core/src/main/java/org/apache/calcite/adapter/jdbc/JdbcToEnumerableConverterRule.java
+++ 
b/core/src/main/java/org/apache/calcite/adapter/jdbc/JdbcToEnumerableConverterRule.java
@@ -35,7 +35,7 @@ public class JdbcToEnumerableConverterRule extends 
ConverterRule {
       RelBuilderFactory relBuilderFactory) {
     super(RelNode.class, (Predicate<RelNode>) r -> true, out,
         EnumerableConvention.INSTANCE, relBuilderFactory,
-        "JdbcToEnumerableConverterRule:" + out);
+        "JdbcToEnumerableConverterRule");
   }
 
   @Override public RelNode convert(RelNode rel) {

Reply via email to