This commit is contained in:
zgq
2024-05-24 21:53:54 +08:00
parent d8970c6d0a
commit 37db887383

View File

@ -22,7 +22,7 @@ public class MysqlValueProcessor extends DefaultSQLValueProcessor {
public String getSqlValueString(ResultSet rs, int index) throws SQLException {
Object obj = rs.getObject(index);
if (obj == null) {
return null;
return "NULL";
}
String columnTypeName = rs.getMetaData().getColumnTypeName(index);
if (MysqlColumnTypeEnum.GEOMETRY.name().equalsIgnoreCase(columnTypeName)