修复Long64写入错误的int类型
parent
635b9d8b82
commit
3580444ea5
|
@ -111,7 +111,7 @@ public class NumberSchema {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void writeTo(ByteBuf output, Long value) {
|
public void writeTo(ByteBuf output, Long value) {
|
||||||
output.writeLong(value.intValue());
|
output.writeLong(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue