mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Refs #30581 -- Fixed DatabaseFeatures.bare_select_suffix on MySQL < 8 and MariaDB < 10.4.
This commit is contained in:
parent
f77216bd1a
commit
7325d29152
2 changed files with 17 additions and 0 deletions
|
@ -548,6 +548,12 @@ class BackendTestCase(TransactionTestCase):
|
|||
)
|
||||
self.assertEqual(tuple(kwargs["extra"].values()), params[1:])
|
||||
|
||||
def test_queries_bare_where(self):
|
||||
sql = f"SELECT 1{connection.features.bare_select_suffix} WHERE 1=1"
|
||||
with connection.cursor() as cursor:
|
||||
cursor.execute(sql)
|
||||
self.assertEqual(cursor.fetchone(), (1,))
|
||||
|
||||
def test_timezone_none_use_tz_false(self):
|
||||
connection.ensure_connection()
|
||||
with self.settings(TIME_ZONE=None, USE_TZ=False):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue