diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-12-18 15:56:43 +0200 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-12-18 15:56:43 +0200 |
commit | 47d03c5dc614939b2df057b984544635ae6217db (patch) | |
tree | e0d88be6672854d1dc7c72d72e71a06bef36634b /src/Components/ExpressionArray.php | |
parent | a023393748617af9748d32489dacaeb587802bfe (diff) | |
download | sql-parser-47d03c5dc614939b2df057b984544635ae6217db.zip sql-parser-47d03c5dc614939b2df057b984544635ae6217db.tar.gz sql-parser-47d03c5dc614939b2df057b984544635ae6217db.tar.bz2 |
Allow NULL in expressions.v3.0.8
Diffstat (limited to 'src/Components/ExpressionArray.php')
-rw-r--r-- | src/Components/ExpressionArray.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Components/ExpressionArray.php b/src/Components/ExpressionArray.php index b05ccc1..f108ad8 100644 --- a/src/Components/ExpressionArray.php +++ b/src/Components/ExpressionArray.php @@ -72,6 +72,7 @@ class ExpressionArray extends Component && ($token->flags & Token::FLAG_KEYWORD_RESERVED) && ((~$token->flags & Token::FLAG_KEYWORD_FUNCTION)) && ($token->value !== 'DUAL') + && ($token->value !== 'NULL') ) { // No keyword is expected. break; |