All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.fastsql.sql.ast.statement.SQLWhoamiStatement Maven / Gradle / Ivy

There is a newer version: 2.0.0_preview_973
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy