We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8387f95 commit 33744ccCopy full SHA for 33744cc
sql_server/pyodbc/features.py
@@ -1,8 +1,3 @@
1
-try:
2
- import pytz
3
-except ImportError:
4
- pytz = None
5
-
6
from django.db.backends.base.features import BaseDatabaseFeatures
7
8
@@ -18,7 +13,8 @@ class DatabaseFeatures(BaseDatabaseFeatures):
18
13
has_real_datatype = True
19
14
has_select_for_update = True
20
15
has_select_for_update_nowait = True
21
- has_zoneinfo_database = pytz is not None
16
+ has_select_for_update_skip_locked = True
17
+ has_zoneinfo_database = False
22
ignores_table_name_case = True
23
ignores_quoted_identifier_case = True
24
requires_literal_defaults = True
0 commit comments