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 DOUBLE:
case INT: case INT:
case LONG: case LONG:
column.asString(); return column.asString();
default: default:
throw new Exception("invalid column type: " + type); throw new Exception("invalid column type: " + type);
} }