[
https://issues.apache.org/jira/browse/BEAM-10925?focusedWorklogId=505397&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-505397
]
ASF GitHub Bot logged work on BEAM-10925:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 27/Oct/20 20:18
Start Date: 27/Oct/20 20:18
Worklog Time Spent: 10m
Work Description: amaliujia commented on a change in pull request #13200:
URL: https://github.com/apache/beam/pull/13200#discussion_r513003261
##########
File path:
sdks/java/extensions/sql/zetasql/src/main/java/org/apache/beam/sdk/extensions/sql/zetasql/ZetaSQLQueryPlanner.java
##########
@@ -184,7 +190,9 @@ private BeamRelNode convertToBeamRelInternal(String sql,
QueryParameters queryPa
RelMetadataQuery.THREAD_PROVIDERS.set(
JaninoRelMetadataProvider.of(root.rel.getCluster().getMetadataProvider()));
root.rel.getCluster().invalidateMetadataQuery();
- return (BeamRelNode) plannerImpl.transform(0, desiredTraits, root.rel);
+ BeamRelNode beamRelNode = (BeamRelNode) plannerImpl.transform(0,
desiredTraits, root.rel);
+ LOG.info("BEAMPlan>\n" + RelOptUtil.toString(beamRelNode));
Review comment:
I see. Maybe just leave this line here. I don't know where in the past
we don't have this logging but match with what CalcitePlanner does is ok.
----------------------------------------------------------------
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:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 505397)
Time Spent: 2.5h (was: 2h 20m)
> ZetaSQL: Support Java UDF
> -------------------------
>
> Key: BEAM-10925
> URL: https://issues.apache.org/jira/browse/BEAM-10925
> Project: Beam
> Issue Type: New Feature
> Components: dsl-sql-zetasql
> Reporter: Kyle Weaver
> Assignee: Kyle Weaver
> Priority: P2
> Time Spent: 2.5h
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)