递增值的增量字段同步

This commit is contained in:
inrgihc
2025-04-21 22:31:55 +08:00
parent a046c510ff
commit 15d55ed864
57 changed files with 952 additions and 230 deletions

View File

@@ -291,7 +291,7 @@ public class MysqlMetadataQueryProvider extends AbstractMetadataProvider {
if (length > 65) {
length = 65;
}
if (length > 15) {
if (length >= 15) {
retval += "DECIMAL(" + length;
if (precision > 0) {
if (precision > 30) {