summaryrefslogtreecommitdiff
path: root/lib/ansible/module_utils/database.py
diff options
context:
space:
mode:
authorAndrey Klychkov <aaklychkov@mail.ru>2019-05-16 13:13:40 +0300
committerDag Wieers <dag@wieers.com>2019-05-16 12:13:40 +0200
commit75046f84105673de148fa810971fcf1015e105be (patch)
tree0f58b86445c9027db84b0e6d427f729a9c754935 /lib/ansible/module_utils/database.py
parent50e9955a2376c7bc37235cbf60b8b6cf82ee4eb5 (diff)
downloadansible-75046f84105673de148fa810971fcf1015e105be.tar.gz
postgresql_db: added tablespace support (#56390)
Diffstat (limited to 'lib/ansible/module_utils/database.py')
-rw-r--r--lib/ansible/module_utils/database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/module_utils/database.py b/lib/ansible/module_utils/database.py
index 83f28c0e3a..096094004c 100644
--- a/lib/ansible/module_utils/database.py
+++ b/lib/ansible/module_utils/database.py
@@ -38,7 +38,7 @@ class UnclosedQuoteError(SQLParseError):
# maps a type of identifier to the maximum number of dot levels that are
# allowed to specify 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)
+_PG_IDENTIFIER_TO_DOT_LEVEL = dict(database=1, schema=2, table=3, column=4, role=1, tablespace=1)
_MYSQL_IDENTIFIER_TO_DOT_LEVEL = dict(database=1, table=2, column=3, role=1, vars=1)