diff options
author | Andi Albrecht <albrecht.andi@gmail.com> | 2018-07-28 09:32:06 +0200 |
---|---|---|
committer | Andi Albrecht <albrecht.andi@gmail.com> | 2018-07-28 09:32:06 +0200 |
commit | b4121569a82eed1c174011be113bee184470f60d (patch) | |
tree | 3b54dcfa395d9b5045ebd55cc4f473cd7175424c /sqlparse | |
parent | 5e1d5e234bf2a45881c63c24702bb02d4456db3e (diff) | |
download | sqlparse-b4121569a82eed1c174011be113bee184470f60d.tar.gz |
Add missing EXPLAIN keyword (fixes #421).
Diffstat (limited to 'sqlparse')
-rw-r--r-- | sqlparse/keywords.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py index bca50ba..7492a37 100644 --- a/sqlparse/keywords.py +++ b/sqlparse/keywords.py @@ -253,6 +253,7 @@ KEYWORDS = { 'EXECUTE': tokens.Keyword, 'EXISTING': tokens.Keyword, 'EXISTS': tokens.Keyword, + 'EXPLAIN': tokens.Keyword, 'EXTERNAL': tokens.Keyword, 'EXTRACT': tokens.Keyword, |