Skip to content

Commit

Permalink
Correct an unexpected fall through
Browse files Browse the repository at this point in the history
  • Loading branch information
mirromutth committed Feb 16, 2024
1 parent 6c109b6 commit 26aa227
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,13 @@ private static ServerMessage decodeCommandMessage(ByteBuf buf, ConnectionContext
} else if (EofMessage.isValidSize(byteSize)) {
return EofMessage.decode(buf);
}

break;
case LOCAL_INFILE:
if (buf.readableBytes() > 1) {
return LocalInfileRequest.decode(buf, context);
}

break;
}

Expand Down

0 comments on commit 26aa227

Please sign in to comment.