MCPcopy Create free account

hub / github.com/tortoise/tortoise-orm / functions

Functions3,850 in github.com/tortoise/tortoise-orm

Functiontest_only_source_first
(db, source_fields_instance)
tests/test_only.py:118
Functiontest_only_source_get
(db, source_fields_instance)
tests/test_only.py:99
Functiontest_only_source_partial_save
(db, source_fields_instance)
tests/test_only.py:135
Functiontest_only_source_partial_save_with_pk
(db, source_fields_instance)
tests/test_only.py:151
Functiontest_only_source_partial_save_with_pk_wrong_field
(db, source_fields_instance)
tests/test_only.py:143
Functiontest_only_source_save
(db, source_fields_instance)
tests/test_only.py:127
Functiontest_only_straight_filter
(db, straight_fields_instance)
tests/test_only.py:40
Functiontest_only_straight_first
(db, straight_fields_instance)
tests/test_only.py:50
Functiontest_only_straight_get
(db, straight_fields_instance)
tests/test_only.py:31
Functiontest_only_straight_partial_save
(db, straight_fields_instance)
tests/test_only.py:67
Functiontest_only_straight_partial_save_with_pk
(db, straight_fields_instance)
tests/test_only.py:83
Functiontest_only_straight_partial_save_with_pk_wrong_field
(db, straight_fields_instance)
tests/test_only.py:75
Functiontest_only_straight_save
(db, straight_fields_instance)
tests/test_only.py:59
Functiontest_optional_update
(db)
tests/contrib/test_pydantic.py:1936
Functiontest_oracle_alter_field_drop_default
Oracle should use MODIFY with DEFAULT NULL to drop a default.
tests/migrations/test_schema_editor_backends.py:699
Functiontest_oracle_alter_field_not_null_to_null
Oracle should use MODIFY with type for not-null->null change.
tests/migrations/test_schema_editor_backends.py:641
Functiontest_oracle_alter_field_null_to_not_null
Oracle should use MODIFY with type for null->not-null change.
tests/migrations/test_schema_editor_backends.py:610
Functiontest_oracle_alter_field_set_default
Oracle should use MODIFY with DEFAULT for setting a default.
tests/migrations/test_schema_editor_backends.py:670
Functiontest_oracle_create_table_includes_fk_constraints
Oracle CREATE TABLE should include FK constraints via _get_inner_statements.
tests/migrations/test_schema_editor_backends.py:563
Functiontest_oracle_create_table_with_schema
()
tests/migrations/test_schema_qualified_migrations.py:266
Functiontest_oracle_rename_table_with_schema
Oracle RENAME TABLE uses schema-qualified names.
tests/migrations/test_schema_qualified_migrations.py:655
Functiontest_order_by
(db)
tests/test_order_by.py:23
Functiontest_order_by
(db)
tests/test_queryset_reuse.py:72
Functiontest_order_by
(db)
tests/fields/test_decimal.py:105
Functiontest_order_by_aggregation
(db)
tests/test_order_by.py:94
Functiontest_order_by_aggregation_reversed
(db)
tests/test_order_by.py:106
Functiontest_order_by_ambigious_field_name
(db)
tests/test_order_by.py:52
Functiontest_order_by_annotation
(db)
tests/test_filtering.py:469
Functiontest_order_by_annotation_not_in_values
(db)
tests/test_values.py:252
Functiontest_order_by_annotation_not_in_values_list
(db)
tests/test_values.py:273
Functiontest_order_by_bad_value
(db, intfields_data)
tests/test_queryset.py:596
Functiontest_order_by_nested_basic
(db)
tests/test_order_by_nested.py:10
Functiontest_order_by_related
(db)
tests/test_order_by.py:41
Functiontest_order_by_related_reversed
(db)
tests/test_order_by.py:65
Functiontest_order_by_relation
(db)
tests/test_order_by.py:76
Functiontest_order_by_reserved_word_annotation
(db)
tests/test_order_by.py:118
Functiontest_order_by_reversed
(db)
tests/test_order_by.py:32
Functiontest_order_by_unknown_field
(db)
tests/test_order_by.py:85
Functiontest_overlap_ints
Test overlap filter on integer array field.
tests/fields/test_array.py:162
Functiontest_override_default_model_config_by_config_class
Pydantic meta's config_class should be able to override default config.
tests/contrib/test_pydantic.py:1398
Functiontest_override_meta_pydantic_config_by_model_creator
(db)
tests/contrib/test_pydantic.py:1419
Methodtest_pk_alias_compare
(self, Field: Any, init_kwargs: dict)
tests/test_primary_key.py:193
Methodtest_pk_alias_compare
(self)
tests/test_primary_key.py:280
Methodtest_pk_alias_error
(self, Field: Any, init_kwargs: dict)
tests/test_primary_key.py:185
Methodtest_pk_alias_error
(self)
tests/test_primary_key.py:269
Methodtest_pk_alias_warning
(self, Field: Any, init_kwargs: dict)
tests/test_primary_key.py:174
Methodtest_pk_alias_warning
(self)
tests/test_primary_key.py:258
Functiontest_pk_deprecated
()
tests/fields/test_text.py:55
Functiontest_postgres_add_constraint_with_condition_generates_partial_index
PostgreSQL generates CREATE UNIQUE INDEX ... WHERE for partial unique constraints.
tests/migrations/test_schema_editor_constraints.py:547
Functiontest_postgres_alter_field_bool_db_default
PostgreSQL alter_field adding db_default=True should emit SET DEFAULT TRUE.
tests/migrations/test_schema_editor_backends.py:150
Functiontest_postgres_alter_field_description_change
PostgreSQL should emit COMMENT ON COLUMN when description changes.
tests/migrations/test_schema_editor_backends.py:887
Functiontest_postgres_alter_field_description_removal
PostgreSQL should emit COMMENT ON COLUMN ... IS NULL when description removed.
tests/migrations/test_schema_editor_backends.py:916
Functiontest_postgres_alter_field_max_length
PostgreSQL alter_field changing max_length should emit ALTER COLUMN TYPE.
tests/migrations/test_schema_editor_backends.py:733
Functiontest_postgres_alter_field_uses_introspected_legacy_name
PostgreSQL AlterField unique=True->False should use the introspected constraint name.
tests/migrations/test_operations_database.py:334
Functiontest_postgres_basic
()
tests/backends/test_db_url.py:96
Functiontest_postgres_bool_db_default_false
PostgreSQL should emit DEFAULT FALSE for BooleanField(db_default=False).
tests/migrations/test_schema_editor_backends.py:65
Functiontest_postgres_bool_db_default_true
PostgreSQL should emit DEFAULT TRUE for BooleanField(db_default=True).
tests/migrations/test_schema_editor_backends.py:42
Functiontest_postgres_create_table_with_schema
()
tests/migrations/test_schema_qualified_migrations.py:230
Functiontest_postgres_encoded_password
()
tests/backends/test_db_url.py:111
Functiontest_postgres_func_rand
(db, intfields)
tests/contrib/test_functions.py:34
Functiontest_postgres_int_db_default_unaffected
PostgreSQL non-bool db_default should still work (regression guard).
tests/migrations/test_schema_editor_backends.py:110
Functiontest_postgres_no_db
()
tests/backends/test_db_url.py:126
Functiontest_postgres_no_port
()
tests/backends/test_db_url.py:141
Functiontest_postgres_nonint_port
()
tests/backends/test_db_url.py:156
Functiontest_postgres_params
()
tests/backends/test_db_url.py:182
Functiontest_postgres_plus_sign_in_password
()
tests/backends/test_db_url.py:248
Functiontest_postgres_search
(db)
tests/test_queryset.py:763
Functiontest_postgres_testing
()
tests/backends/test_db_url.py:162
Functiontest_prefetch
(db)
tests/test_prefetching.py:10
Functiontest_prefetch_bad_key
(db)
tests/test_prefetching.py:123
Functiontest_prefetch_direct_relation
(db)
tests/test_prefetching.py:115
Functiontest_prefetch_direct_relation_to_attr
(db)
tests/test_prefetching.py:169
Functiontest_prefetch_m2m
(db)
tests/test_prefetching.py:51
Functiontest_prefetch_m2m_filter
(db)
tests/test_prefetching.py:131
Functiontest_prefetch_m2m_to_attr
(db)
tests/test_prefetching.py:143
Functiontest_prefetch_nested
(db)
tests/test_prefetching.py:77
Functiontest_prefetch_nested_with_aggregation
(db)
tests/test_prefetching.py:96
Functiontest_prefetch_o2o
(db)
tests/test_prefetching.py:66
Functiontest_prefetch_o2o_to_attr
(db)
tests/test_prefetching.py:158
Functiontest_prefetch_object
(db)
tests/test_prefetching.py:23
Functiontest_prefetch_related_fk
(db)
tests/test_relations.py:280
Functiontest_prefetch_related_id
(db)
tests/test_relations.py:316
Functiontest_prefetch_related_missing_field
(db)
tests/test_relations.py:298
Functiontest_prefetch_related_nonrel_field
(db)
tests/test_relations.py:307
Functiontest_prefetch_related_rfk
(db)
tests/test_relations.py:289
Functiontest_prefetch_unknown_field
(db)
tests/test_prefetching.py:38
Functiontest_prevent_saving
(db)
tests/test_validators.py:86
Functiontest_principal__by_name__awaited
(db)
tests/fields/test_o2o_with_unique.py:57
Functiontest_principal__by_name__created_prefetched
(db)
tests/fields/test_o2o_with_unique.py:32
Functiontest_principal__by_name__re_awaited
(db)
tests/fields/test_o2o_with_unique.py:48
Functiontest_principal__by_name__unfetched
(db)
tests/fields/test_o2o_with_unique.py:40
Functiontest_principal__create_by_id
(db)
tests/fields/test_o2o_with_unique.py:15
Functiontest_principal__create_by_name
(db)
tests/fields/test_o2o_with_unique.py:23
Functiontest_principal__empty
(db)
tests/fields/test_o2o_with_unique.py:9
Functiontest_principal__fetched_bool
(db)
tests/fields/test_o2o_with_unique.py:117
Functiontest_principal__filter
(db)
tests/fields/test_o2o_with_unique.py:127
Functiontest_principal__instantiated_create
(db)
tests/fields/test_o2o_with_unique.py:111
Functiontest_principal__uninstantiated_create
(db)
tests/fields/test_o2o_with_unique.py:104
Functiontest_psycopg_connection_params
()
tests/backends/test_connection_params.py:104
Functiontest_psycopg_index_safe
()
tests/schema/test_generate_schema.py:1899
← previousnext →3,201–3,300 of 3,850, ranked by callers