Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.3(EOL)
-
None
Description
Following code returns NULL for InnoDB
create or replace sequence test.x engine = innodb; |
select next value for test.x; |
select update_time from information_schema.tables where (table_name, table_schema) = ('x','test'); |
The same for aria or myisam returns correct timestamp:
create or replace sequence test.x1 engine = myisam; |
select next value for test.x1; |
create or replace sequence test.x2 engine = aria; |
select next value for test.x2; |
select update_time from information_schema.tables where (table_name, table_schema) in ( ('x2','test'),('x1','test')); |
Attachments
Issue Links
- relates to
-
MDEV-4697 UPDATE_TIME field for XtraDB / InnoDB
-
- Closed
-
-
MDEV-10139 Support for SEQUENCE objects
-
- Closed
-
-
MDEV-12930 Testing SEQUENCE object
-
- Closed
-
For a note, update_time for InnoDB tables in I_S is pretty useless anyway, as it doesn't survive server restart. If it can be fixed as well, it would be great of course.
That's an old limitation (which just recently replaced an even older limitation when update_time wasn't populated for InnoDB tables at all).