julianhyde commented on code in PR #3480:
URL: https://github.com/apache/calcite/pull/3480#discussion_r1375147643
##########
core/src/main/java/org/apache/calcite/sql2rel/SqlToRelConverter.java:
##########
@@ -2759,6 +2769,13 @@ protected void convertUnpivot(Blackboard bb, SqlUnpivot
unpivot) {
bb.setRoot(relBuilder.build(), true);
}
+ private void convertTransientScan(Blackboard bb, SqlWithItem withItem) {
+ final SqlValidatorNamespace fromNamespace =
getNamespace(withItem).resolve();
+ bb.setRoot(
+ relBuilder.transientScan(withItem.name.getSimple(),
+ fromNamespace.getRowType()).build(), true);
+ }
Review Comment:
need more indentation before `fromNamespace`
--
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]