We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 545fcb7 commit a2c23a5Copy full SHA for a2c23a5
1 file changed
tests/WP_SQLite_Metadata_Tests.php
@@ -112,7 +112,7 @@ public function testInformationSchemaTables() {
112
"SELECT
113
table_name as 'name',
114
engine AS 'engine',
115
- round( ( data_length / 1024 / 1024 ), 2 ) 'data'
+ FLOOR( data_length / 1024 / 1024 ) 'data'
116
FROM INFORMATION_SCHEMA.TABLES
117
WHERE TABLE_NAME = 'wp_posts'
118
ORDER BY name ASC;"
0 commit comments