Add USAGE as a valid privilege

This commit is contained in:
Toshio Kuratomi 2014-12-03 14:43:20 -08:00 committed by Matt Clay
parent c49a20b0e5
commit 9fde3c2dc5
2 changed files with 3 additions and 3 deletions

View file

@ -238,7 +238,7 @@ except ImportError:
VALID_PRIVS = frozenset(('SELECT', 'INSERT', 'UPDATE', 'DELETE', 'TRUNCATE',
'REFERENCES', 'TRIGGER', 'CREATE', 'CONNECT',
'TEMPORARY', 'TEMP', 'EXECUTE', 'USAGE', 'ALL'))
'TEMPORARY', 'TEMP', 'EXECUTE', 'USAGE', 'ALL', 'USAGE'))
class Error(Exception):
pass