查询数据集if(!"longtext".equals(type)&&!"longblob".equals(type))

This commit is contained in:
limengnan 2025-06-25 14:01:17 +08:00
parent fae6e04036
commit 44ebb271b8

View File

@ -1262,7 +1262,7 @@ public Map<String, Object> getFieldsByTableId(Long datasource_id, String tablena
String field = row[0]; String field = row[0];
String type = row[1]; String type = row[1];
int size = 0 ; int size = 0 ;
if(!"longtext".equals(type)){ if(!"longtext".equals(type)&&!"longblob".equals(type)){
size = ObjectUtils.isNotEmpty(row[2])?Integer.parseInt(row[2]):0; size = ObjectUtils.isNotEmpty(row[2])?Integer.parseInt(row[2]):0;
} }