We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eff7fa7 commit aea568fCopy full SHA for aea568f
src/Components/Expression.php
@@ -32,22 +32,21 @@ class Expression extends Component
32
* @var array<string, int>
33
*/
34
private static $ALLOWED_KEYWORDS = [
35
+ 'AND' => 1,
36
'AS' => 1,
- 'DUAL' => 1,
37
- 'REGEXP' => 1,
+ 'BETWEEN' => 1,
38
'CASE' => 1,
39
+ 'DUAL' => 1,
40
'DIV' => 1,
- 'AND' => 1,
41
+ 'IS' => 1,
42
+ 'MOD' => 1,
43
+ 'NOT' => 1,
44
+ 'NOT NULL' => 1,
45
+ 'NULL' => 1,
46
'OR' => 1,
47
+ 'OVER' => 1,
48
+ 'REGEXP' => 1,
49
'XOR' => 1,
- 'NOT' => 1,
- 'MOD' => 1,
-
- 'OVER' => 2,
- 'IS' => 3,
- 'NOT NULL' => 4,
50
- 'NULL' => 4,
51
];
52
53
/**
0 commit comments