Skip to content

Commit 18bdb08

Browse files
committed
review comments
Signed-off-by: MBWhite <whitemat@uk.ibm.com>
1 parent 8748751 commit 18bdb08

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

isthmus/src/main/java/io/substrait/isthmus/calcite/rel/CreateTable.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ private CreateTable(
1717
this.tableName = tableName;
1818
}
1919

20+
/**
21+
* CreateTable Constructor.
22+
*
23+
* @param tableName tablename components
24+
* @param input RelNode input
25+
*/
2026
public CreateTable(List<String> tableName, RelNode input) {
2127
this(input.getCluster(), input.getTraitSet(), tableName, input);
2228
}
@@ -35,7 +41,9 @@ public RelWriter explainTerms(RelWriter pw) {
3541
/**
3642
* Returns the inputs to this node (single input).
3743
*
38-
* @return a list containing the input relation
44+
* @param traitSet the RelTraitSet
45+
* @param inputs List of RelNodes
46+
* @return the input relation
3947
*/
4048
@Override
4149
public RelNode copy(RelTraitSet traitSet, List<RelNode> inputs) {

0 commit comments

Comments
 (0)