LSN virtual column
Bug #722993 reported by
Valentine Gostev
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Percona Server moved to https://jira.percona.com/projects/PS |
Triaged
|
Wishlist
|
Unassigned |
Bug Description
We would like to be able to view LSN for every particular row in databases, for example with such kind of statement:
mysql> SELECT * FROM t1 WHERE a=1 /*!SHOW_LSN*/;
+------+--------+
| a | LSN |
+------+--------+
| 1 | 484659 |
+------+--------+
1 row in set (0.01 sec)
mysql> SELECT * FROM t1 WHERE a=1;
+------+
| a |
+------+
| 1 |
+------+
1 row in set (0.00 sec)
mysql>
Changed in percona-server: | |
importance: | Undecided → Wishlist |
tags: | added: fr |
To post a comment you must log in.
This should just appear as normal column - like rowid does. ($50 says you don't realise that exists)