We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eca0b9 commit fd25a75Copy full SHA for fd25a75
sqlx-core/src/mysql/protocol/statement/execute.rs
@@ -16,7 +16,7 @@ impl<'q> Encode<'_, Capabilities> for Execute<'q> {
16
buf.push(0x17); // COM_STMT_EXECUTE
17
buf.extend(&self.statement.to_le_bytes());
18
buf.push(0); // NO_CURSOR
19
- buf.extend(&0_u32.to_le_bytes()); // iterations (always 1): int<4>
+ buf.extend(&1_u32.to_le_bytes()); // iterations (always 1): int<4>
20
21
if !self.arguments.types.is_empty() {
22
buf.extend(&*self.arguments.null_bitmap);
0 commit comments