asyncer-io / r2dbc-mysql

Reactive Relational Database Connectivity for MySQL. The official successor to mirromutth/r2dbc-mysql(dev.miku:r2dbc-mysql).
https://r2dbc.io
Apache License 2.0
196 stars 21 forks source link

Correct an unexpected fall through #238

Closed mirromutth closed 7 months ago

mirromutth commented 7 months ago

Motivation:

An unexpected fall through, which should have no impact. Because no packets start with 0xFE during the command phase, the byte size is greater than 1, and not be OK or EOF.

Modification:

Correct an unexpected fall through in ServerDecoder.

Result:

Corrected an unexpected fall through.