com.alibaba.fastsql.sql.ast.statement.SQLWhoamiStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastsql Show documentation
Show all versions of fastsql Show documentation
An JDBC datasource implementation.
package com.alibaba.fastsql.sql.ast.statement;
import com.alibaba.fastsql.sql.ast.SQLStatement;
import com.alibaba.fastsql.sql.ast.SQLStatementImpl;
import com.alibaba.fastsql.sql.visitor.SQLASTVisitor;
public class SQLWhoamiStatement extends SQLStatementImpl {
@Override
protected void accept0(SQLASTVisitor v) {
if (v.visit(this)) {
}
v.endVisit(this);
}
}