com.alibaba.druid.sql.ast.statement.SQLSelectQueryBase 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.ast.statement;
import com.alibaba.druid.sql.ast.SQLObjectImpl;
public abstract class SQLSelectQueryBase extends SQLObjectImpl implements SQLSelectQuery {
protected boolean parenthesized;
@Override
public boolean isParenthesized() {
return parenthesized;
}
@Override
public void setParenthesized(boolean parenthesized) {
this.parenthesized = parenthesized;
}
public abstract SQLSelectQueryBase clone();
}