Skip to content

Commit

Permalink
fix doc issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pengzhiwei committed Apr 16, 2019
1 parent 8cfd1b8 commit 18fd91c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/org/apache/calcite/sql/SqlUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ private void visitChild(SqlNode node) {
* Whether the selectItem is a table function node in the select.
* eg. "select table_func(1) as (f0,f1)"
* @param selectItem select item
* @return
* @return true is this selectItem is a table function call
*/
public static boolean isTableFunctionInSelect(SqlNode selectItem) {
if (selectItem.getKind() == SqlKind.AS) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,6 @@ public interface SqlConformance {
* Whether Select can contain a table function.
* <p>For example, consider the query
* <blockquote><pre> SELECT split(col) as (f0, f1) from a </pre> </blockquote>
* @return
*/
boolean allowSelectTableFunction();
}
Expand Down

0 comments on commit 18fd91c

Please sign in to comment.