liquibase.sql.SingleLineComment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.sql;
import liquibase.structure.DatabaseObject;
import java.util.Collection;
import java.util.HashSet;
public class SingleLineComment implements Sql {
private final String sql;
private final String lineCommentToken;
public SingleLineComment(String sql, String lineCommentToken) {
this.sql = sql;
this.lineCommentToken = lineCommentToken;
}
@Override
public Collection extends DatabaseObject> getAffectedDatabaseObjects() {
return new HashSet<>();
}
@Override
public String getEndDelimiter() {
return "\n";
}
@Override
public String toSql() {
return lineCommentToken + ' ' + sql;
}
@Override
public String toString() {
return toSql();
}
}