Skip to content

Commit

Permalink
[release-16.0] Replace use of WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS wit…
Browse files Browse the repository at this point in the history
…h `WAIT_FOR_EXECUTED_GTID_SET` (vitessio#14612) (vitessio#14620)

Signed-off-by: Shlomi Noach <[email protected]>
  • Loading branch information
shlomi-noach committed Nov 28, 2023
1 parent a8b6d48 commit 151b1b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/mysql/flavor_mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ func (mysqlFlavor) waitUntilPositionCommand(ctx context.Context, pos Position) (
}
}

return fmt.Sprintf("SELECT WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS('%s', %v)", pos, timeoutSeconds), nil
return fmt.Sprintf("SELECT WAIT_FOR_EXECUTED_GTID_SET('%s', %v)", pos, timeoutSeconds), nil
}

// readBinlogEvent is part of the Flavor interface.
Expand Down

0 comments on commit 151b1b0

Please sign in to comment.