diff options
Diffstat (limited to 'src/Statements/SelectStatement.php')
-rw-r--r-- | src/Statements/SelectStatement.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Statements/SelectStatement.php b/src/Statements/SelectStatement.php index f2f94a8..fbcae48 100644 --- a/src/Statements/SelectStatement.php +++ b/src/Statements/SelectStatement.php @@ -91,6 +91,9 @@ class SelectStatement extends Statement '_SELECT' => array('SELECT', 1), 'INTO' => array('INTO', 3), 'FROM' => array('FROM', 3), + 'FORCE' => array('FORCE', 1), + 'USE' => array('USE', 1), + 'IGNORE' => array('IGNORE', 3), 'PARTITION' => array('PARTITION', 3), 'JOIN' => array('JOIN', 1), @@ -136,6 +139,13 @@ class SelectStatement extends Statement public $from = array(); /** + * Index hints + * + * @var IndexHint[] + */ + public $index_hints; + + /** * Partitions used as source for this statement. * * @var ArrayObj |