summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Statement.php2
-rw-r--r--src/Statements/SelectStatement.php1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/Statement.php b/src/Statement.php
index 439eb13..e7238f2 100644
--- a/src/Statement.php
+++ b/src/Statement.php
@@ -56,6 +56,8 @@ abstract class Statement
*/
public static $CLAUSES = [];
+ public static $END_OPTIONS = [];
+
/**
* The options of this query.
*
diff --git a/src/Statements/SelectStatement.php b/src/Statements/SelectStatement.php
index dab8db4..a770227 100644
--- a/src/Statements/SelectStatement.php
+++ b/src/Statements/SelectStatement.php
@@ -10,6 +10,7 @@ use PhpMyAdmin\SqlParser\Components\ArrayObj;
use PhpMyAdmin\SqlParser\Components\Condition;
use PhpMyAdmin\SqlParser\Components\Expression;
use PhpMyAdmin\SqlParser\Components\FunctionCall;
+use PhpMyAdmin\SqlParser\Components\IndexHint;
use PhpMyAdmin\SqlParser\Components\IntoKeyword;
use PhpMyAdmin\SqlParser\Components\JoinKeyword;
use PhpMyAdmin\SqlParser\Components\Limit;