fixed mysql set(8 bit) type parse

This commit is contained in:
七锋
2018-10-24 16:25:28 +08:00
parent c75c248086
commit 575dd59c78
@@ -859,7 +859,7 @@ public final class RowsLogBuffer {
// 转化为unsign long
switch (len) {
case 1:
value = buffer.getInt8();
value = buffer.getUint8();
break;
case 2:
value = buffer.getUint16();