engines moved to separate library

This commit is contained in:
Jan Prochazka
2020-02-02 22:27:49 +01:00
parent eee6c94ebc
commit 6d1f3e977c
30 changed files with 844 additions and 40 deletions

View File

@@ -0,0 +1,5 @@
select
TABLE_NAME as pureName,
case when ENGINE='InnoDB' then CREATE_TIME else coalesce(UPDATE_TIME, CREATE_TIME) end as alterTime
from information_schema.tables
where TABLE_SCHEMA = '#DATABASE#' and TABLE_NAME =[OBJECT_NAME_CONDITION];