summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2014-11-25 01:47:07 -0800
committerToshio Kuratomi <toshio@fedoraproject.org>2014-11-25 01:47:07 -0800
commitfcf0975c904a64e1fc008e2251b2325bae76ee41 (patch)
treed562cbbb548245b49df026d5a004fc300e32550a
parent0287e9a23d29e253054ad6a110c7f5ba6a939595 (diff)
downloadansible-fcf0975c904a64e1fc008e2251b2325bae76ee41.tar.gz
Fix a few mysql related typos
-rw-r--r--lib/ansible/module_utils/database.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/module_utils/database.py b/lib/ansible/module_utils/database.py
index 68b294a436..3c8bdaab80 100644
--- a/lib/ansible/module_utils/database.py
+++ b/lib/ansible/module_utils/database.py
@@ -36,7 +36,7 @@ class UnclosedQuoteError(SQLParseError):
# allowed to specifiy that identifier. For example, a database column can be
# specified by up to 4 levels: database.schema.table.column
_PG_IDENTIFIER_TO_DOT_LEVEL = dict(database=1, schema=2, table=3, column=4, role=1)
-_MYSQL_IDENTIFIER_TO_DOT_LEVEL = dict(database=1, table=2, column=3, role=1)
+_MYSQL_IDENTIFIER_TO_DOT_LEVEL = dict(database=1, table=2, column=3, role=1, vars=1)
def _find_end_quote(identifier, quote_char='"'):
accumulate = 0
@@ -116,5 +116,5 @@ def pg_quote_identifier(identifier, id_type):
def mysql_quote_identifier(identifier, id_type):
identifier_fragments = _identifier_parse(identifier, quote_char='`')
if len(identifier_fragments) > _MYSQL_IDENTIFIER_TO_DOT_LEVEL[id_type]:
- raise SQLParseError('MySQL does not support %s with more than %i dots' % (id_type, _IDENTIFIER_TO_DOT_LEVEL[id_type]))
+ raise SQLParseError('MySQL does not support %s with more than %i dots' % (id_type, _MYSQL_IDENTIFIER_TO_DOT_LEVEL[id_type]))
return '.'.join(identifier_fragments)