Merge pull request #24023 from woocommerce/fix/engine-php-notice
DB received `ENGINE` instead of `engine`, so PHP notices appear
This commit is contained in:
commit
c484fdd6d9
|
@ -700,7 +700,7 @@ class WC_REST_System_Status_V2_Controller extends WC_REST_Controller {
|
|||
$wpdb->prepare(
|
||||
"SELECT
|
||||
table_name AS 'name',
|
||||
engine,
|
||||
engine AS 'engine',
|
||||
round( ( data_length / 1024 / 1024 ), 2 ) 'data',
|
||||
round( ( index_length / 1024 / 1024 ), 2 ) 'index'
|
||||
FROM information_schema.TABLES
|
||||
|
|
Loading…
Reference in New Issue