| 415 | */ |
| 416 | |
| 417 | static uchar *net_store_length_fast(uchar *packet, uint length) |
| 418 | { |
| 419 | if (length < 251) |
| 420 | { |
| 421 | *packet=(uchar) length; |
| 422 | return packet+1; |
| 423 | } |
| 424 | *packet++=252; |
| 425 | int2store(packet,(uint) length); |
| 426 | return packet+2; |
| 427 | } |
| 428 | |
| 429 | /** |
| 430 | Send the status of the current statement execution over network. |