@@ -13,7 +13,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
1313 has_select_for_update_of : bool
1414 select_for_update_of_column : bool
1515 can_return_columns_from_insert : bool
16- can_introspect_autofield : bool
1716 supports_subqueries_in_group_by : bool
1817 supports_transactions : bool
1918 supports_timezones : bool
@@ -25,33 +24,48 @@ class DatabaseFeatures(BaseDatabaseFeatures):
2524 supports_tablespaces : bool
2625 supports_sequence_reset : bool
2726 can_introspect_materialized_views : bool
28- can_introspect_time_field : bool
2927 atomic_transactions : bool
30- supports_combined_alters : bool
3128 nulls_order_largest : bool
3229 requires_literal_defaults : bool
3330 closed_cursor_error_class : Any
34- bare_select_suffix : str
3531 supports_select_for_update_with_limit : bool
3632 supports_temporal_subtraction : bool
3733 ignores_table_name_case : bool
3834 supports_index_on_text_field : bool
39- has_case_insensitive_like : bool
4035 create_test_procedure_without_params_sql : str
4136 create_test_procedure_with_int_param_sql : str
4237 supports_callproc_kwargs : bool
4338 supports_over_clause : bool
4439 supports_frame_range_fixed_distance : bool
4540 supports_ignore_conflicts : bool
46- max_query_params : Any
41+ max_query_params : int
4742 supports_partial_indexes : bool
4843 supports_slicing_ordering_in_compound : bool
4944 allows_multiple_constraints_on_same_fields : bool
50- supports_primitives_in_json_field : bool
5145 supports_json_field_contains : bool
5246 can_return_rows_from_update : bool
5347 supports_aggregate_order_by_clause : bool
5448 supports_any_value : bool
5549 supports_tuple_comparison_against_subquery : bool
50+ supports_json_negative_indexing : bool
51+
52+ @cached_property
53+ def django_test_skips (self ) -> dict [str , set [str ]]: ... # type: ignore[override]
54+ @cached_property
55+ def introspected_field_types (self ) -> dict [str , str ]: ... # type: ignore[override]
56+ @cached_property
57+ def test_collations (self ) -> dict [str , str | None ]: ... # type: ignore[override]
58+ @cached_property
59+ def supports_collation_on_charfield (self ) -> bool : ... # type: ignore[override]
60+ @cached_property
61+ def supports_primitives_in_json_field (self ) -> bool : ... # type: ignore[override]
62+ @cached_property
63+ def supports_frame_exclusion (self ) -> bool : ... # type: ignore[override]
64+ @cached_property
65+ def supports_comparing_boolean_expr (self ) -> bool : ... # type: ignore[override]
66+ @cached_property
67+ def supports_aggregation_over_interval_types (self ) -> bool : ...
68+ @cached_property
69+ def bare_select_suffix (self ) -> str : ... # type: ignore[override]
5670 @cached_property
57- def supports_json_negative_indexing (self ) -> bool : ... # type: ignore[override]
71+ def supports_tuple_lookups (self ) -> bool : ... # type: ignore[override]
0 commit comments