summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-06-08 21:35:02 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-06-09 10:14:13 -0400
commitab8b4f25eebfbd2ef5819ff98dd372d5392c4b6b (patch)
tree4da3898d55d68333938396ba5f5ba8ed04e73791 /test/sql
parentd93f952b46c9cca557774d69442a7124c3309a2d (diff)
downloadsqlalchemy-ab8b4f25eebfbd2ef5819ff98dd372d5392c4b6b.tar.gz
restore parameter escaping for public methods
Adjusted the fix made for :ticket:`8056` which adjusted the escaping of bound parameter names with special characters such that the escaped names were translated after the SQL compilation step, which broke a published recipe on the FAQ illustrating how to merge parameter names into the string output of a compiled SQL string. The change restores the escaped names that come from ``compiled.params`` and adds a conditional parameter to :meth:`.SQLCompiler.construct_params` named ``escape_names`` that defaults to ``True``, restoring the old behavior by default. Fixes: #8113 Change-Id: I9cbedb1080bc06d51f287fd2cbf26aaab1c74653
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_compiler.py33
1 files changed, 28 insertions, 5 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py
index 94c38548f..930f32b7b 100644
--- a/test/sql/test_compiler.py
+++ b/test/sql/test_compiler.py
@@ -3752,10 +3752,14 @@ class BindParameterTest(AssertsCompiledSQL, fixtures.TestBase):
"""general bind param escape unit tests added as a result of
#8053.
- However, note that the final application of an escaped param name
+ The final application of an escaped param name
was moved out of compiler and into DefaultExecutionContext in
related issue #8056.
+ However in #8113 we made this conditional to suit usage recipes
+ posted in the FAQ.
+
+
"""
SomeEnum = pep435_enum("SomeEnum")
@@ -3788,14 +3792,33 @@ class BindParameterTest(AssertsCompiledSQL, fixtures.TestBase):
compiled = t.insert().compile(
dialect=dialect, compile_kwargs=dict(compile_keys=("_id", "_data"))
)
- params = compiled.construct_params({"_id": 1, "_data": one})
+ # not escaped
+ params = compiled.construct_params(
+ {"_id": 1, "_data": one}, escape_names=False
+ )
eq_(params, {"_id": 1, "_data": one})
+
+ # escaped by default
+ params = compiled.construct_params({"_id": 1, "_data": one})
+ eq_(params, {'"_id"': 1, '"_data"': one})
+
+ # escaped here as well
+ eq_(compiled.params, {'"_data"': None, '"_id"': None})
+
+ # bind processors aren't part of this
eq_(compiled._bind_processors, {"_data": mock.ANY})
- # previously, this was:
- # eq_(params, {'"_id"': 1, '"_data"': one})
- # eq_(compiled._bind_processors, {'"_data"': mock.ANY})
+ dialect.paramstyle = "pyformat"
+ compiled = t.insert().compile(
+ dialect=dialect, compile_kwargs=dict(compile_keys=("_id", "_data"))
+ )
+
+ # FAQ recipe works
+ eq_(
+ compiled.string % compiled.params,
+ "INSERT INTO t (_id, _data) VALUES (None, None)",
+ )
def test_expanding_non_expanding_conflict(self):
"""test #8018"""