MDEV-6925: Remove bad "" operators.

Merged Facebook commit ec1aac68c74f3c1e558d057c4c9fcfe6edbbea93
authored by Steaphan Greene from https://github.com/facebook/mysql-5.6

In C++11, "" is not parsed as before.  So "A""B" is not the same as "AB".
Instead, whitespace is required, like: "A" "B"
This commit is contained in:
Jan Lindström 2014-10-26 07:29:37 +02:00
parent caeffc7a7d
commit 85c21dbc47
2 changed files with 2 additions and 2 deletions

View file

@ -1639,7 +1639,7 @@ trx_i_s_create_lock_id(
} else {
/* table lock */
res_len = ut_snprintf(lock_id, lock_id_size,
TRX_ID_FMT":" UINT64PF,
TRX_ID_FMT ":" UINT64PF,
row->lock_trx_id,
row->lock_table_id);
}

View file

@ -1653,7 +1653,7 @@ trx_i_s_create_lock_id(
} else {
/* table lock */
res_len = ut_snprintf(lock_id, lock_id_size,
TRX_ID_FMT":" UINT64PF,
TRX_ID_FMT ":" UINT64PF,
row->lock_trx_id,
row->lock_table_id);
}