Commit 0a2edddb authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

MDEV-14975 : fix last commit's typo.

parent 5716c71c
...@@ -1397,7 +1397,7 @@ static lsn_t get_current_lsn(MYSQL *connection) ...@@ -1397,7 +1397,7 @@ static lsn_t get_current_lsn(MYSQL *connection)
lsn_t lsn = 0; lsn_t lsn = 0;
if (MYSQL_RES *res = xb_mysql_query(connection, if (MYSQL_RES *res = xb_mysql_query(connection,
"SHOW ENGINE INNODB STATUS", "SHOW ENGINE INNODB STATUS",
false, true)) { true, false)) {
if (MYSQL_ROW row = mysql_fetch_row(res)) { if (MYSQL_ROW row = mysql_fetch_row(res)) {
const char *p= strstr(row[2], lsn_prefix); const char *p= strstr(row[2], lsn_prefix);
DBUG_ASSERT(p); DBUG_ASSERT(p);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment