Java Code Examples for org.apache.calcite.sql.util.SqlVisitor#visit()

The following examples show how to use org.apache.calcite.sql.util.SqlVisitor#visit() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SqlDynamicParam.java    From Bats with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 2
Source File: SqlIdentifier.java    From Bats with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 3
Source File: SqlIntervalQualifier.java    From Bats with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 4
Source File: SqlNodeList.java    From Bats with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 5
Source File: SqlLiteral.java    From Bats with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 6
Source File: SqlDataTypeSpec.java    From Bats with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 7
Source File: SqlCall.java    From Bats with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 8
Source File: SqlDynamicParam.java    From calcite with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 9
Source File: SqlIdentifier.java    From calcite with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 10
Source File: SqlIntervalQualifier.java    From calcite with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 11
Source File: SqlNodeList.java    From calcite with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 12
Source File: SqlLiteral.java    From calcite with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 13
Source File: SqlDataTypeSpec.java    From calcite with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}
 
Example 14
Source File: SqlCall.java    From calcite with Apache License 2.0 4 votes vote down vote up
public <R> R accept(SqlVisitor<R> visitor) {
  return visitor.visit(this);
}