com.clickhouse.client.api.query.QueryStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-v2 Show documentation
Show all versions of client-v2 Show documentation
New client api for ClickHouse
The newest version!
package com.clickhouse.client.api.query;
/**
* QueryStatement class is responsible for constructing SQL query statements.
*
*/
public class QueryStatement {
private final String query;
public QueryStatement(String query) {
this.query = query;
}
public String getQuery() {
return query;
}
}