diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-10-10 15:36:00 +0300 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-10-10 15:36:11 +0300 |
commit | cd62cf6524cbd8764655364ea8a243f69b6020b0 (patch) | |
tree | 8e538040c459433dcdb531518eb147bae86871ee /src | |
parent | 402890bc7b74534f2150bba7dc40562bf436b085 (diff) | |
download | sql-parser-cd62cf6524cbd8764655364ea8a243f69b6020b0.zip sql-parser-cd62cf6524cbd8764655364ea8a243f69b6020b0.tar.gz sql-parser-cd62cf6524cbd8764655364ea8a243f69b6020b0.tar.bz2 |
Add EXISTS as an acceptable keyword in conditions.v3.0.2
Diffstat (limited to 'src')
-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 b33b0c3..d7262c5 100644 --- a/src/Components/Condition.php +++ b/src/Components/Condition.php @@ -40,6 +40,7 @@ class Condition extends Component public static $OPERATORS = array( 'AND' => 1, 'BETWEEN' => 1, + 'EXISTS' => 1, 'IN' => 1, 'IS' => 1, 'LIKE' => 1, |