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