com.alibaba.druid.sql.dialect.mysql.ast.statement.DrdsShowGlobalIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid Show documentation
Show all versions of druid Show documentation
An JDBC datasource implementation.
package com.alibaba.druid.sql.dialect.mysql.ast.statement;
import com.alibaba.druid.sql.ast.SQLName;
import com.alibaba.druid.sql.ast.statement.SQLShowStatement;
import com.alibaba.druid.sql.dialect.mysql.visitor.MySqlASTVisitor;
/**
* version 1.0
* Author zzy
* Date 2019/10/8 20:06
*/
public class DrdsShowGlobalIndex extends MySqlStatementImpl implements SQLShowStatement {
private SQLName tableName;
public void accept0(MySqlASTVisitor visitor) {
visitor.visit(this);
visitor.endVisit(this);
}
public SQLName getTableName() {
return tableName;
}
public void setTableName(SQLName tableName) {
tableName.setParent(this);
this.tableName = tableName;
}
}