MySQL Forums
Forum List  »  InnoDB

Re: how to convert the hex of the output of a deadlock to decimal
Posted by: z z
Date: May 14, 2018 08:57PM

no,according to this blog:https://www.percona.com/blog/2014/10/28/how-to-deal-with-mysql-deadlocks/
the value is :
mysql> select conv('3d370',16,10);
+---------------------+
| conv('3d370',16,10) |
+---------------------+
| 250736 |
+---------------------+

mysql> select count(*) from sbtest9 where id=250736;
+----------+
| count(*) |
+----------+
| 1 |
+----------+

it seems right,i want to kown why ignore highest bit

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: how to convert the hex of the output of a deadlock to decimal
781
z z
May 14, 2018 08:57PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.