* @license http://opensource.org/licenses/GPL-2.0 GNU Public License */ class OptimizeStatement extends Statement { /** * Options of this statement. * * @var array */ public static $OPTIONS = array( 'TABLE' => 1, 'NO_WRITE_TO_BINLOG' => 2, 'LOCAL' => 3, ); /** * Optimized tables. * * @var Expression[] */ public $tables; }