diff options
| author | David Sanders <shang.xiao.sanders@gmail.com> | 2022-10-18 23:13:18 +1100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-11-25 09:42:25 +0100 |
| commit | 64b3c413da011f55469165256261f406a277e822 (patch) | |
| tree | 10f018d91a8d7ac011fcd29f3f34f188bf2ad782 | |
| parent | 80c66e40f7beecbd5ee501f757a2e61236597349 (diff) | |
Fixed #34103 -- Fixed logging SQL queries with duplicate parameters on Oracle.
| -rw-r--r-- | django/db/backends/oracle/operations.py | 16 | ||||
| -rw-r--r-- | tests/backends/tests.py | 17 |
2 files changed, 25 insertions, 8 deletions
diff --git a/django/db/backends/oracle/operations.py b/django/db/backends/oracle/operations.py index 78f998183e..d34ca23bae 100644 --- a/django/db/backends/oracle/operations.py +++ b/django/db/backends/oracle/operations.py @@ -323,16 +323,16 @@ END; # Unlike Psycopg's `query` and MySQLdb`'s `_executed`, cx_Oracle's # `statement` doesn't contain the query parameters. Substitute # parameters manually. - if isinstance(params, (tuple, list)): - for i, param in enumerate(reversed(params), start=1): - param_num = len(params) - i - statement = statement.replace( - ":arg%d" % param_num, force_str(param, errors="replace") - ) - elif isinstance(params, dict): + if params: + if isinstance(params, (tuple, list)): + params = { + f":arg{i}": param for i, param in enumerate(dict.fromkeys(params)) + } + elif isinstance(params, dict): + params = {f":{key}": val for (key, val) in params.items()} for key in sorted(params, key=len, reverse=True): statement = statement.replace( - ":%s" % key, force_str(params[key], errors="replace") + key, force_str(params[key], errors="replace") ) return statement diff --git a/tests/backends/tests.py b/tests/backends/tests.py index c6980058ca..c3cfa61fdb 100644 --- a/tests/backends/tests.py +++ b/tests/backends/tests.py @@ -142,6 +142,23 @@ class LastExecutedQueryTest(TestCase): sql % params, ) + def test_last_executed_query_with_duplicate_params(self): + square_opts = Square._meta + table = connection.introspection.identifier_converter(square_opts.db_table) + id_column = connection.ops.quote_name(square_opts.get_field("id").column) + root_column = connection.ops.quote_name(square_opts.get_field("root").column) + sql = f"UPDATE {table} SET {root_column} = %s + %s WHERE {id_column} = %s" + with connection.cursor() as cursor: + params = [42, 42, 1] + cursor.execute(sql, params) + last_executed_query = connection.ops.last_executed_query( + cursor, sql, params + ) + self.assertEqual( + last_executed_query, + f"UPDATE {table} SET {root_column} = 42 + 42 WHERE {id_column} = 1", + ) + class ParameterHandlingTest(TestCase): def test_bad_parameter_count(self): |
