Fix tdengine writer LONG type.

This commit is contained in:
dingxiaobo 2022-10-12 16:44:55 +08:00
parent dfa82f63dd
commit a9c24448f6

View File

@ -276,7 +276,7 @@ public class DefaultDataHandler implements DataHandler {
case DOUBLE:
case INT:
case LONG:
column.asString();
return column.asString();
default:
throw new Exception("invalid column type: " + type);
}