@@ -14,6 +14,7 @@ class BaseDatabaseFeatures:
14
14
allows_group_by_select_index : bool
15
15
empty_fetchmany_value : Sequence [Any ]
16
16
update_can_self_select : bool
17
+ delete_can_self_reference_subquery : bool
17
18
interprets_empty_strings_as_nulls : bool
18
19
supports_nullable_unique_constraints : bool
19
20
supports_partially_nullable_unique_constraints : bool
@@ -64,7 +65,6 @@ class BaseDatabaseFeatures:
64
65
atomic_transactions : bool
65
66
can_rollback_ddl : bool
66
67
schema_editor_uses_clientside_param_binding : bool
67
- supports_atomic_references_rename : bool
68
68
supports_combined_alters : bool
69
69
supports_foreign_keys : bool
70
70
can_create_inline_fk : bool
@@ -75,6 +75,9 @@ class BaseDatabaseFeatures:
75
75
can_introspect_check_constraints : bool
76
76
supports_paramstyle_pyformat : bool
77
77
requires_literal_defaults : bool
78
+ supports_expression_defaults : bool
79
+ supports_default_keyword_in_insert : bool
80
+ supports_default_keyword_in_bulk_insert : bool
78
81
connection_persists_old_columns : bool
79
82
closed_cursor_error_class : type [DatabaseError ]
80
83
has_case_insensitive_like : bool
@@ -90,6 +93,7 @@ class BaseDatabaseFeatures:
90
93
supports_select_difference : bool
91
94
supports_slicing_ordering_in_compound : bool
92
95
supports_parentheses_in_compound : bool
96
+ supports_nulls_distinct_unique_constraints : bool
93
97
requires_compound_order_by_subquery : bool
94
98
supports_aggregate_filter_clause : bool
95
99
supports_index_on_text_field : bool
@@ -128,11 +132,14 @@ class BaseDatabaseFeatures:
128
132
supports_non_deterministic_collations : bool
129
133
supports_comments : bool
130
134
supports_comments_inline : bool
135
+ supports_stored_generated_columns : bool
136
+ supports_virtual_generated_columns : bool
131
137
supports_logical_xor : bool
132
138
prohibits_null_characters_in_text_exception : tuple [ValueError | DataError ] | None
133
139
supports_unlimited_charfield : bool
134
140
test_collations : dict [str , str | None ]
135
141
test_now_utc_template : str | None
142
+ insert_test_table_with_defaults : str | None
136
143
django_test_expected_failures : set [str ]
137
144
django_test_skips : dict [str , set [str ]]
138
145
connection : BaseDatabaseWrapper
0 commit comments