mirror of
https://github.com/PostgreSQL-For-Wordpress/postgresql-for-wordpress.git
synced 2026-01-25 16:02:19 +01:00
11 lines
216 B
PHP
11 lines
216 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class OptimizeTableSQLRewriter extends AbstractSQLRewriter
|
||
|
|
{
|
||
|
|
public function rewrite(): string
|
||
|
|
{
|
||
|
|
$sql = $this->original();
|
||
|
|
return str_replace('OPTIMIZE TABLE', 'VACUUM', $sql);
|
||
|
|
}
|
||
|
|
}
|