summaryrefslogtreecommitdiff
path: root/Lib/sqlite3
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-04-04 01:50:50 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2011-04-04 01:50:50 +0200
commit642811f82ade79aea1bdbbafb89c4b90497f3b65 (patch)
tree836d378d42801c4cc53a93626ee6615150e5e2c2 /Lib/sqlite3
parent0bc98794bbc2844b0eddbe3e42a5eea9fbf04dbe (diff)
downloadcpython-642811f82ade79aea1bdbbafb89c4b90497f3b65.tar.gz
Fix TraceCallbackTests to not use bound parameters (followup to issue #11688)
Diffstat (limited to 'Lib/sqlite3')
-rw-r--r--Lib/sqlite3/test/hooks.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/sqlite3/test/hooks.py b/Lib/sqlite3/test/hooks.py
index b889cd2394..dad35d9674 100644
--- a/Lib/sqlite3/test/hooks.py
+++ b/Lib/sqlite3/test/hooks.py
@@ -213,7 +213,10 @@ class TraceCallbackTests(unittest.TestCase):
traced_statements.append(statement)
con.set_trace_callback(trace)
con.execute("create table foo(x)")
- con.execute("insert into foo(x) values (?)", (unicode_value,))
+ # Can't execute bound parameters as their values don't appear
+ # in traced statements before SQLite 3.6.21
+ # (cf. http://www.sqlite.org/draft/releaselog/3_6_21.html)
+ con.execute('insert into foo(x) values ("%s")' % unicode_value)
con.commit()
self.assertTrue(any(unicode_value in stmt for stmt in traced_statements),
"Unicode data %s garbled in trace callback: %s"