
jooqpreprocessor.parsers.NameUTF8 Maven / Gradle / Ivy
package jooqpreprocessor.parsers;
public final class NameUTF8 implements StatementParser {
@Override
public boolean matches(final String statement) {
return statement.trim().equals("SET NAMES utf8mb4");
}
@Override
public String convert(final String statement) {
return "";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy