cc.iliz.mybatis.shading.sqltable.DeleteSqlTableParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-sharding Show documentation
Show all versions of mybatis-sharding Show documentation
A sharding based on mybatis
package cc.iliz.mybatis.shading.sqltable;
import java.util.regex.Pattern;
public class DeleteSqlTableParser extends BaseSqlTableParser {
@Override
public Pattern getRegPattern() {
return Pattern.compile("from\\s+(\\w+)",Pattern.CASE_INSENSITIVE);
}
}