diff options
author | William Desportes <williamdes@wdes.fr> | 2019-12-31 12:29:55 +0100 |
---|---|---|
committer | William Desportes <williamdes@wdes.fr> | 2019-12-31 12:30:59 +0100 |
commit | 1f45fbcc794c7a8e10b78b6d024c1dc48a42eaf9 (patch) | |
tree | 7683586db3b254f1614b368dd4595115a013a515 /src/Statements/SetStatement.php | |
parent | 9ef51add6d8f732cd52f07874f0b4beb0b9ac068 (diff) | |
parent | 128b21929b6c0d6e669b3cf3afaaa803b3ddbd44 (diff) | |
download | sql-parser-1f45fbcc794c7a8e10b78b6d024c1dc48a42eaf9.zip sql-parser-1f45fbcc794c7a8e10b78b6d024c1dc48a42eaf9.tar.gz sql-parser-1f45fbcc794c7a8e10b78b6d024c1dc48a42eaf9.tar.bz2 |
Merge branch 'QA'
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'src/Statements/SetStatement.php')
-rw-r--r-- | src/Statements/SetStatement.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Statements/SetStatement.php b/src/Statements/SetStatement.php index 08e986c..80a1dc7 100644 --- a/src/Statements/SetStatement.php +++ b/src/Statements/SetStatement.php @@ -55,6 +55,14 @@ class SetStatement extends Statement 3, 'expr', ], + 'SESSION' => 3, + 'GLOBAL' => 3, + 'PERSIST' => 3, + 'PERSIST_ONLY' => 3, + '@@SESSION' => 3, + '@@GLOBAL' => 3, + '@@PERSIST' => 3, + '@@PERSIST_ONLY' => 3, ]; public static $END_OPTIONS = [ |