Is there any way to determine the last date/time a partition was updated on a database using the InnoDB engine without scanning the entire partition? Right now I am doing:
select max(somedatefield) from sometable partitions (p1, p2, p3, ...)"
This seems inefficient for something I would think is pretty common.
select max(somedatefield) from sometable partitions (p1, p2, p3, ...)"
This seems inefficient for something I would think is pretty common.