update 优化 多租户忽略表判断支持忽略大小写
This commit is contained in:
parent
5e51077347
commit
5382722867
@ -48,7 +48,7 @@ public class PlusTenantLineHandler implements TenantLineHandler {
|
|||||||
"gen_table_column"
|
"gen_table_column"
|
||||||
);
|
);
|
||||||
tables.addAll(excludes);
|
tables.addAll(excludes);
|
||||||
return tables.contains(tableName);
|
return StringUtils.containsAnyIgnoreCase(tableName, tables.toArray(new String[0]));
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user