azexcy commented on code in PR #24598:
URL: https://github.com/apache/shardingsphere/pull/24598#discussion_r1136444865
##########
db-protocol/mysql/src/main/java/org/apache/shardingsphere/db/protocol/mysql/packet/binlog/row/column/value/time/MySQLFractionalSeconds.java:
##########
@@ -26,41 +27,29 @@
*/
public final class MySQLFractionalSeconds {
- private final int fraction;
+ @Getter
+ private final int nanos;
private final int fractionalSecondsPrecision;
public MySQLFractionalSeconds(final int columnMeta, final
MySQLPacketPayload payload) {
fractionalSecondsPrecision = columnMeta;
- fraction = readFraction(payload);
+ nanos = readFraction(payload);
}
private int readFraction(final MySQLPacketPayload payload) {
Review Comment:
eg. the fractional seconds is `.77` means the precision is 2, equals 0.77
seconds, to nanos is `0.77 * 1000 * 1000 * 1000`, paylod.readInt1() will return
77
the fractional seconds is `.773` means the precision is 3, equals 0.773
seconds, to nanos is `0.773 * 1000 * 1000`, paylod.readUnsignedShort() will
return 7730
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]