You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by GitBox <gi...@apache.org> on 2019/12/30 04:34:41 UTC

[GitHub] [calcite] chunweilei commented on a change in pull request #1705: [CALCITE-3645] Add columnMappings in digest and explainTerms methods.

chunweilei commented on a change in pull request #1705: [CALCITE-3645] Add columnMappings in digest and explainTerms methods.
URL: https://github.com/apache/calcite/pull/1705#discussion_r361897588
 
 

 ##########
 File path: core/src/main/java/org/apache/calcite/rel/core/TableFunctionScan.java
 ##########
 @@ -195,6 +195,9 @@ public RelWriter explainTerms(RelWriter pw) {
     if (elementType != null) {
       pw.item("elementType", elementType);
     }
+    if (columnMappings != null) {
+      pw.item("columnMappings", columnMappings);
+    }
     return pw;
   }
 
 Review comment:
   Would it bring some advantages?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services