mirror of https://github.com/django/django.git
Fixed #13648 - '%s' escaping support for sqlite3 regression.
Thanks to master for the report and initial patch, and salgado and others for work on the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16209 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
014cc896bc
commit
724c84fe90
|
@ -212,7 +212,7 @@ class DatabaseWrapper(BaseDatabaseWrapper):
|
||||||
if self.settings_dict['NAME'] != ":memory:":
|
if self.settings_dict['NAME'] != ":memory:":
|
||||||
BaseDatabaseWrapper.close(self)
|
BaseDatabaseWrapper.close(self)
|
||||||
|
|
||||||
FORMAT_QMARK_REGEX = re.compile(r'(?![^%])%s')
|
FORMAT_QMARK_REGEX = re.compile(r'(?<!%)%s')
|
||||||
|
|
||||||
class SQLiteCursorWrapper(Database.Cursor):
|
class SQLiteCursorWrapper(Database.Cursor):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -224,6 +224,20 @@ class ConnectionCreatedSignalTest(TestCase):
|
||||||
self.assertTrue(data == {})
|
self.assertTrue(data == {})
|
||||||
|
|
||||||
|
|
||||||
|
class EscapingChecks(TestCase):
|
||||||
|
|
||||||
|
@unittest.skipUnless(connection.vendor == 'sqlite',
|
||||||
|
"This is a sqlite-specific issue")
|
||||||
|
def test_parameter_escaping(self):
|
||||||
|
#13648: '%s' escaping support for sqlite3
|
||||||
|
cursor = connection.cursor()
|
||||||
|
response = cursor.execute(
|
||||||
|
"select strftime('%%s', date('now'))").fetchall()[0][0]
|
||||||
|
self.assertNotEqual(response, None)
|
||||||
|
# response should be an non-zero integer
|
||||||
|
self.assertTrue(int(response))
|
||||||
|
|
||||||
|
|
||||||
class BackendTestCase(TestCase):
|
class BackendTestCase(TestCase):
|
||||||
def test_cursor_executemany(self):
|
def test_cursor_executemany(self):
|
||||||
#4896: Test cursor.executemany
|
#4896: Test cursor.executemany
|
||||||
|
|
Loading…
Reference in New Issue