diff options
author | Michal Čihař <michal@cihar.com> | 2016-03-02 14:11:39 +0100 |
---|---|---|
committer | Michal Čihař <michal@cihar.com> | 2016-03-02 14:11:39 +0100 |
commit | e5b854f25e0524c756d3f4fab960f7323af16584 (patch) | |
tree | 88644ee29b876b7f848ff5c0c5314d078a835546 | |
parent | d2e37de1dbec251556f35712bddcd61d24baaee6 (diff) | |
parent | d5658e3cfe8a9af0916f2adabeb55c2d4af57f57 (diff) | |
download | sql-parser-e5b854f25e0524c756d3f4fab960f7323af16584.zip sql-parser-e5b854f25e0524c756d3f4fab960f7323af16584.tar.gz sql-parser-e5b854f25e0524c756d3f4fab960f7323af16584.tar.bz2 |
Merge pull request #38 from ujjwalwahi/master
Recognize ALL when used with WHERE clause
-rw-r--r-- | src/Components/Condition.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Components/Condition.php b/src/Components/Condition.php index e84ad86..65374cc 100644 --- a/src/Components/Condition.php +++ b/src/Components/Condition.php @@ -38,6 +38,7 @@ class Condition extends Component * @var array */ public static $ALLOWED_KEYWORDS = array( + 'ALL' => 1, 'AND' => 1, 'BETWEEN' => 1, 'EXISTS' => 1, |