sswanv opened a new issue, #18259:
URL: https://github.com/apache/shardingsphere/issues/18259

   - product used: **shardingsphere-proxy:5.1.1**
   - go version: **go1.18 darwin/amd64**
   - sql:
   ```sql
   DELIMITER //
   CREATE PROCEDURE TransferInviteUser (IN source_user_id bigint, IN 
target_user_id bigint)
   BEGIN
       # ...
   end //
   DELIMITER ;
   ```
   - code segment: 
   ```golang
   result, err := db.Exec("CALL TransferInviteUser(?, ?)", sourceUserId, 
targetUserId)
   if err != nil {
           // sql: expected 0 arguments, got 2
        panic(err)
   }
   ```
   >  The **num_params** received in the **COM_STMT_PREPARE** Response packet 
do not match the actual input parameters.
   https://dev.mysql.com/doc/internals/en/com-stmt-prepare-response.html
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: 
[email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to