diff options
Diffstat (limited to 'django/db/backends/utils.py')
-rw-r--r-- | django/db/backends/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/backends/utils.py b/django/db/backends/utils.py index 2efc9b0553..45c03ba3e9 100644 --- a/django/db/backends/utils.py +++ b/django/db/backends/utils.py @@ -181,7 +181,7 @@ def typecast_timestamp(s): # does NOT store time zone information def split_identifier(identifier): """ - Split a SQL identifier into a two element tuple of (namespace, name). + Split an SQL identifier into a two element tuple of (namespace, name). The identifier could be a table, column, or sequence name might be prefixed by a namespace. @@ -195,7 +195,7 @@ def split_identifier(identifier): def truncate_name(identifier, length=None, hash_len=4): """ - Shorten a SQL identifier to a repeatable mangled version with the given + Shorten an SQL identifier to a repeatable mangled version with the given length. If a quote stripped name contains a namespace, e.g. USERNAME"."TABLE, |