Automatically re-prepare and retry transactions that hit this error:
cached plan must not change result type.
The implementation should do something like this:
- Catch the error
- Re-prepare statement in request
- Retry the request
To make this safe, make sure the request has only one Bind & Execute messages - any more and the request is not safe to retry because it can run the same query twice.
Automatically re-prepare and retry transactions that hit this error:
The implementation should do something like this:
To make this safe, make sure the request has only one
Bind&Executemessages - any more and the request is not safe to retry because it can run the same query twice.