(command string)
| 155 | } |
| 156 | |
| 157 | func IsNoResponseCommand(command string) bool { |
| 158 | switch command { |
| 159 | case mysql.CommandStatusToString(mysql.COM_STMT_CLOSE), mysql.CommandStatusToString(mysql.COM_STMT_SEND_LONG_DATA): |
| 160 | return true |
| 161 | default: |
| 162 | return false |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | // PrintByteArray is only for debugging purpose |
| 167 | func PrintByteArray(name string, b []byte) { |
no test coverage detected