1<?php
2
3/**
4 * `RESTORE` statement.
5 */
6
7namespace PhpMyAdmin\SqlParser\Statements;
8
9/**
10 * `RESTORE` statement.
11 *
12 * RESTORE TABLE tbl_name [, tbl_name] ... FROM '/path/to/backup/directory'
13 *
14 * @category   Statements
15 *
16 * @license    https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
17 */
18class RestoreStatement extends MaintenanceStatement
19{
20    /**
21     * Options of this statement.
22     *
23     * @var array
24     */
25    public static $OPTIONS = array(
26        'TABLE' => 1,
27
28        'FROM' => array(
29            2,
30            'var',
31        )
32    );
33}
34