├── .coveragerc ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── base-test.yml │ ├── release.yml │ ├── test-before-pr.yml │ └── test-main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── clickhouse-config ├── node1 │ ├── enable-keeper.xml │ ├── macros.xml │ ├── network-and-logging.xml │ ├── remote-servers.xml │ └── use-keeper.xml ├── node2 │ ├── enable-keeper.xml │ ├── macros.xml │ ├── network-and-logging.xml │ ├── remote-servers.xml │ └── use-keeper.xml ├── node3 │ ├── enable-keeper.xml │ ├── macros.xml │ ├── network-and-logging.xml │ ├── remote-servers.xml │ └── use-keeper.xml └── node4 │ ├── macros.xml │ ├── network-and-logging.xml │ ├── remote-servers.xml │ └── use-keeper.xml ├── clickhouse_backend ├── __init__.py ├── backend │ ├── __init__.py │ ├── base.py │ ├── client.py │ ├── creation.py │ ├── features.py │ ├── introspection.py │ ├── operations.py │ └── schema.py ├── compat.py ├── driver │ ├── __init__.py │ ├── client.py │ ├── connection.py │ ├── escape.py │ ├── pool.py │ └── types.py ├── idworker │ ├── __init__.py │ ├── base.py │ └── snowflake.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── inspectdb.py ├── models │ ├── __init__.py │ ├── aggregates.py │ ├── base.py │ ├── engines.py │ ├── fields │ │ ├── __init__.py │ │ ├── array.py │ │ ├── base.py │ │ ├── integer.py │ │ ├── json.py │ │ ├── map.py │ │ ├── tuple.py │ │ └── utils.py │ ├── functions │ │ ├── __init__.py │ │ ├── base.py │ │ ├── datetime.py │ │ ├── hashes.py │ │ ├── other.py │ │ ├── random.py │ │ └── tuples.py │ ├── indexes.py │ ├── query.py │ └── sql │ │ ├── __init__.py │ │ ├── compiler.py │ │ └── query.py ├── patch │ ├── __init__.py │ ├── fields │ │ ├── __init__.py │ │ └── json.py │ ├── functions.py │ └── migrations.py ├── utils │ ├── __init__.py │ ├── encoding.py │ ├── timezone.py │ └── version.py └── validators.py ├── compose.yaml ├── docs ├── Configurations.md ├── Fields.md ├── Migrations.md └── README.md ├── example ├── README.md ├── config │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── testapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── proxy-config └── haproxy.cfg ├── pyproject.toml ├── setup.py ├── tests ├── aggregates │ ├── __init__.py │ ├── models.py │ └── tests.py ├── aggregation │ ├── __init__.py │ ├── models.py │ ├── test_filter_argument.py │ └── tests.py ├── aggregation_regress │ ├── __init__.py │ ├── models.py │ └── tests.py ├── annotations │ ├── __init__.py │ ├── models.py │ └── tests.py ├── auth_tests │ ├── __init__.py │ ├── fixtures │ │ ├── natural.json │ │ └── regular.json │ ├── models │ │ ├── __init__.py │ │ ├── custom_permissions.py │ │ ├── custom_user.py │ │ ├── is_active.py │ │ ├── uuid_pk.py │ │ ├── with_custom_email_field.py │ │ └── with_integer_username.py │ ├── test_auth_backends.py │ ├── test_basic.py │ ├── test_middleware.py │ └── test_models.py ├── backends │ ├── __init__.py │ ├── clickhouse │ │ ├── __init__.py │ │ ├── test_creation.py │ │ ├── test_driver.py │ │ ├── test_introspection.py │ │ ├── test_operations.py │ │ └── tests.py │ ├── models.py │ ├── test_ddl_references.py │ ├── test_utils.py │ └── tests.py ├── basic │ ├── __init__.py │ ├── models.py │ └── tests.py ├── clickhouse_fields │ ├── __init__.py │ ├── models.py │ ├── test_arrayfield.py │ ├── test_jsonfield.py │ ├── test_mapfield.py │ ├── test_tuplefield.py │ └── tests.py ├── clickhouse_functions │ ├── __init__.py │ ├── models.py │ ├── test_datetime.py │ ├── test_hashes.py │ ├── test_other.py │ ├── test_random.py │ └── test_tuples.py ├── clickhouse_queries │ ├── __init__.py │ ├── models.py │ └── tests.py ├── clickhouse_table_engine │ ├── __init__.py │ ├── models.py │ ├── test_base.py │ ├── test_distributed.py │ └── tests.py ├── custom_migration_operations │ ├── __init__.py │ ├── more_operations.py │ └── operations.py ├── dbrouters.py ├── expressions_window │ ├── __init__.py │ ├── models.py │ └── tests.py ├── inspectdb │ ├── __init__.py │ ├── models.py │ └── tests.py ├── migration_test_data_persistence │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_add_book.py │ │ └── __init__.py │ ├── models.py │ └── tests.py ├── migrations │ ├── __init__.py │ ├── deprecated_field_migrations │ │ ├── 0001_initial.py │ │ ├── 0002_remove_ipaddressfield_ip.py │ │ └── __init__.py │ ├── faulty_migrations │ │ ├── __init__.py │ │ ├── file.py │ │ └── namespace │ │ │ └── foo │ │ │ └── __init__.py │ ├── migrations_test_apps │ │ ├── __init__.py │ │ ├── alter_fk │ │ │ ├── __init__.py │ │ │ ├── author_app │ │ │ │ ├── __init__.py │ │ │ │ └── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ ├── 0002_alter_id.py │ │ │ │ │ └── __init__.py │ │ │ └── book_app │ │ │ │ ├── __init__.py │ │ │ │ └── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ ├── conflicting_app_with_dependencies │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_conflicting_second.py │ │ │ │ ├── 0002_second.py │ │ │ │ └── __init__.py │ │ ├── lookuperror_a │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_a2.py │ │ │ │ ├── 0003_a3.py │ │ │ │ ├── 0004_a4.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── lookuperror_b │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_b2.py │ │ │ │ ├── 0003_b3.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── lookuperror_c │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_c2.py │ │ │ │ ├── 0003_c3.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── migrated_app │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── migrated_unapplied_app │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── mutate_state_a │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ ├── mutate_state_b │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_add_field.py │ │ │ │ └── __init__.py │ │ ├── normal │ │ │ └── __init__.py │ │ ├── unmigrated_app │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── unmigrated_app_simple │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── unmigrated_app_syncdb │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── unspecified_app_with_conflict │ │ │ ├── __init__.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_conflicting_second.py │ │ │ │ ├── 0002_second.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── with_package_model │ │ │ ├── __init__.py │ │ │ └── models │ │ │ │ └── __init__.py │ │ └── without_init_file │ │ │ ├── __init__.py │ │ │ └── migrations │ │ │ └── .keep │ ├── models.py │ ├── related_models_app │ │ └── __init__.py │ ├── routers.py │ ├── test_add_many_to_many_field_initial │ │ ├── 0001_initial.py │ │ ├── 0002_initial.py │ │ └── __init__.py │ ├── test_auto_now_add │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_autodetector.py │ ├── test_base.py │ ├── test_deprecated_fields.py │ ├── test_exceptions.py │ ├── test_executor.py │ ├── test_fake_initial_case_insensitive │ │ ├── fake_initial │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ └── initial │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ ├── test_graph.py │ ├── test_loader.py │ ├── test_migrations │ │ ├── 0001_initial.py │ │ ├── 0002_second.py │ │ └── __init__.py │ ├── test_migrations_atomic_operation │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_migrations_backwards_deps_1 │ │ ├── 0001_initial.py │ │ └── 0002_second.py │ ├── test_migrations_bad_pyc │ │ ├── 0001_initial.pyc-tpl │ │ └── __init__.py │ ├── test_migrations_clashing_prefix │ │ ├── __init__.py │ │ ├── a.py │ │ └── ab.py │ ├── test_migrations_conflict │ │ ├── 0001_initial.py │ │ ├── 0002_conflicting_second.py │ │ ├── 0002_second.py │ │ └── __init__.py │ ├── test_migrations_conflict_long_name │ │ ├── 0001_initial.py │ │ ├── 0002_conflicting_second_migration_with_long_name.py │ │ ├── 0002_second.py │ │ └── __init__.py │ ├── test_migrations_custom_user │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_migrations_empty │ │ └── __init__.py │ ├── test_migrations_fake_split_initial │ │ ├── 0001_initial.py │ │ ├── 0002_second.py │ │ └── __init__.py │ ├── test_migrations_first │ │ ├── __init__.py │ │ ├── second.py │ │ └── thefirst.py │ ├── test_migrations_initial_false │ │ ├── 0001_not_initial.py │ │ └── __init__.py │ ├── test_migrations_manual_porting │ │ ├── 0001_initial.py │ │ ├── 0002_second.py │ │ ├── 0003_third.py │ │ ├── 0004_fourth.py │ │ └── __init__.py │ ├── test_migrations_namespace_package │ │ └── 0001_initial.py │ ├── test_migrations_no_ancestor │ │ ├── 0001_initial.py │ │ ├── 0002_conflicting_second.py │ │ ├── 0002_second.py │ │ └── __init__.py │ ├── test_migrations_no_changes │ │ ├── 0001_initial.py │ │ ├── 0002_second.py │ │ ├── 0003_third.py │ │ └── __init__.py │ ├── test_migrations_no_default │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_migrations_no_init │ │ └── .gitkeep │ ├── test_migrations_no_operations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_migrations_non_atomic │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_migrations_noop │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_migrations_order │ │ ├── 0001.py │ │ └── __init__.py │ ├── test_migrations_plan │ │ ├── 0001_initial.py │ │ ├── 0002_second.py │ │ ├── 0003_third.py │ │ ├── 0004_fourth.py │ │ ├── 0005_fifth.py │ │ └── __init__.py │ ├── test_migrations_private │ │ ├── .util.py │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ ├── _util.py │ │ └── ~util.py │ ├── test_migrations_run_before │ │ ├── 0001_initial.py │ │ ├── 0002_second.py │ │ ├── 0003_third.py │ │ └── __init__.py │ ├── test_migrations_squashed │ │ ├── 0001_initial.py │ │ ├── 0001_squashed_0002.py │ │ ├── 0002_second.py │ │ └── __init__.py │ ├── test_migrations_squashed_complex │ │ ├── 1_auto.py │ │ ├── 2_auto.py │ │ ├── 3_auto.py │ │ ├── 3_squashed_5.py │ │ ├── 4_auto.py │ │ ├── 5_auto.py │ │ ├── 6_auto.py │ │ ├── 7_auto.py │ │ └── __init__.py │ ├── test_migrations_squashed_complex_multi_apps │ │ ├── __init__.py │ │ ├── app1 │ │ │ ├── 1_auto.py │ │ │ ├── 2_auto.py │ │ │ ├── 2_squashed_3.py │ │ │ ├── 3_auto.py │ │ │ ├── 4_auto.py │ │ │ └── __init__.py │ │ └── app2 │ │ │ ├── 1_auto.py │ │ │ ├── 1_squashed_2.py │ │ │ ├── 2_auto.py │ │ │ └── __init__.py │ ├── test_migrations_squashed_erroneous │ │ ├── 1_auto.py │ │ ├── 2_auto.py │ │ ├── 3_squashed_5.py │ │ ├── 6_auto.py │ │ ├── 7_auto.py │ │ └── __init__.py │ ├── test_migrations_squashed_extra │ │ ├── 0001_initial.py │ │ ├── 0001_squashed_0002.py │ │ ├── 0002_second.py │ │ ├── 0003_third.py │ │ └── __init__.py │ ├── test_migrations_squashed_no_replaces │ │ ├── 0001_squashed_0002.py │ │ └── __init__.py │ ├── test_migrations_squashed_ref_squashed │ │ ├── __init__.py │ │ ├── app1 │ │ │ ├── 1_auto.py │ │ │ ├── 2_auto.py │ │ │ ├── 2_squashed_3.py │ │ │ ├── 3_auto.py │ │ │ ├── 4_auto.py │ │ │ └── __init__.py │ │ └── app2 │ │ │ ├── 1_auto.py │ │ │ ├── 1_squashed_2.py │ │ │ ├── 2_auto.py │ │ │ └── __init__.py │ ├── test_migrations_unmigdep │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_multidb.py │ ├── test_operations.py │ ├── test_optimizer.py │ ├── test_state.py │ └── test_writer.py ├── migrations2 │ ├── __init__.py │ ├── models.py │ ├── test_migrations_2 │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── test_migrations_2_first │ │ ├── 0001_initial.py │ │ ├── 0002_second.py │ │ └── __init__.py │ └── test_migrations_2_no_deps │ │ ├── 0001_initial.py │ │ └── __init__.py ├── migrations_without_clickhousemodel │ ├── __init__.py │ └── tests.py ├── queries │ ├── __init__.py │ ├── models.py │ └── tests.py ├── runtests.py └── settings.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = clickhouse_backend 3 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203,E501 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/base-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/.github/workflows/base-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-before-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/.github/workflows/test-before-pr.yml -------------------------------------------------------------------------------- /.github/workflows/test-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/.github/workflows/test-main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/README.md -------------------------------------------------------------------------------- /clickhouse-config/node1/enable-keeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node1/enable-keeper.xml -------------------------------------------------------------------------------- /clickhouse-config/node1/macros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node1/macros.xml -------------------------------------------------------------------------------- /clickhouse-config/node1/network-and-logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node1/network-and-logging.xml -------------------------------------------------------------------------------- /clickhouse-config/node1/remote-servers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node1/remote-servers.xml -------------------------------------------------------------------------------- /clickhouse-config/node1/use-keeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node1/use-keeper.xml -------------------------------------------------------------------------------- /clickhouse-config/node2/enable-keeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node2/enable-keeper.xml -------------------------------------------------------------------------------- /clickhouse-config/node2/macros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node2/macros.xml -------------------------------------------------------------------------------- /clickhouse-config/node2/network-and-logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node2/network-and-logging.xml -------------------------------------------------------------------------------- /clickhouse-config/node2/remote-servers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node2/remote-servers.xml -------------------------------------------------------------------------------- /clickhouse-config/node2/use-keeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node2/use-keeper.xml -------------------------------------------------------------------------------- /clickhouse-config/node3/enable-keeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node3/enable-keeper.xml -------------------------------------------------------------------------------- /clickhouse-config/node3/macros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node3/macros.xml -------------------------------------------------------------------------------- /clickhouse-config/node3/network-and-logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node3/network-and-logging.xml -------------------------------------------------------------------------------- /clickhouse-config/node3/remote-servers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node3/remote-servers.xml -------------------------------------------------------------------------------- /clickhouse-config/node3/use-keeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node3/use-keeper.xml -------------------------------------------------------------------------------- /clickhouse-config/node4/macros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node4/macros.xml -------------------------------------------------------------------------------- /clickhouse-config/node4/network-and-logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node4/network-and-logging.xml -------------------------------------------------------------------------------- /clickhouse-config/node4/remote-servers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node4/remote-servers.xml -------------------------------------------------------------------------------- /clickhouse-config/node4/use-keeper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse-config/node4/use-keeper.xml -------------------------------------------------------------------------------- /clickhouse_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/backend/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/backend/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/backend/base.py -------------------------------------------------------------------------------- /clickhouse_backend/backend/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/backend/client.py -------------------------------------------------------------------------------- /clickhouse_backend/backend/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/backend/creation.py -------------------------------------------------------------------------------- /clickhouse_backend/backend/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/backend/features.py -------------------------------------------------------------------------------- /clickhouse_backend/backend/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/backend/introspection.py -------------------------------------------------------------------------------- /clickhouse_backend/backend/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/backend/operations.py -------------------------------------------------------------------------------- /clickhouse_backend/backend/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/backend/schema.py -------------------------------------------------------------------------------- /clickhouse_backend/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/compat.py -------------------------------------------------------------------------------- /clickhouse_backend/driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/driver/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/driver/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/driver/client.py -------------------------------------------------------------------------------- /clickhouse_backend/driver/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/driver/connection.py -------------------------------------------------------------------------------- /clickhouse_backend/driver/escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/driver/escape.py -------------------------------------------------------------------------------- /clickhouse_backend/driver/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/driver/pool.py -------------------------------------------------------------------------------- /clickhouse_backend/driver/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/driver/types.py -------------------------------------------------------------------------------- /clickhouse_backend/idworker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/idworker/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/idworker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/idworker/base.py -------------------------------------------------------------------------------- /clickhouse_backend/idworker/snowflake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/idworker/snowflake.py -------------------------------------------------------------------------------- /clickhouse_backend/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clickhouse_backend/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clickhouse_backend/management/commands/inspectdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/management/commands/inspectdb.py -------------------------------------------------------------------------------- /clickhouse_backend/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/models/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/aggregates.py -------------------------------------------------------------------------------- /clickhouse_backend/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/base.py -------------------------------------------------------------------------------- /clickhouse_backend/models/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/engines.py -------------------------------------------------------------------------------- /clickhouse_backend/models/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/fields/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/models/fields/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/fields/array.py -------------------------------------------------------------------------------- /clickhouse_backend/models/fields/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/fields/base.py -------------------------------------------------------------------------------- /clickhouse_backend/models/fields/integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/fields/integer.py -------------------------------------------------------------------------------- /clickhouse_backend/models/fields/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/fields/json.py -------------------------------------------------------------------------------- /clickhouse_backend/models/fields/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/fields/map.py -------------------------------------------------------------------------------- /clickhouse_backend/models/fields/tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/fields/tuple.py -------------------------------------------------------------------------------- /clickhouse_backend/models/fields/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/fields/utils.py -------------------------------------------------------------------------------- /clickhouse_backend/models/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/functions/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/models/functions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/functions/base.py -------------------------------------------------------------------------------- /clickhouse_backend/models/functions/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/functions/datetime.py -------------------------------------------------------------------------------- /clickhouse_backend/models/functions/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/functions/hashes.py -------------------------------------------------------------------------------- /clickhouse_backend/models/functions/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/functions/other.py -------------------------------------------------------------------------------- /clickhouse_backend/models/functions/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/functions/random.py -------------------------------------------------------------------------------- /clickhouse_backend/models/functions/tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/functions/tuples.py -------------------------------------------------------------------------------- /clickhouse_backend/models/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/indexes.py -------------------------------------------------------------------------------- /clickhouse_backend/models/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/query.py -------------------------------------------------------------------------------- /clickhouse_backend/models/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/sql/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/models/sql/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/sql/compiler.py -------------------------------------------------------------------------------- /clickhouse_backend/models/sql/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/models/sql/query.py -------------------------------------------------------------------------------- /clickhouse_backend/patch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/patch/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/patch/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/patch/fields/__init__.py -------------------------------------------------------------------------------- /clickhouse_backend/patch/fields/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/patch/fields/json.py -------------------------------------------------------------------------------- /clickhouse_backend/patch/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/patch/functions.py -------------------------------------------------------------------------------- /clickhouse_backend/patch/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/patch/migrations.py -------------------------------------------------------------------------------- /clickhouse_backend/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clickhouse_backend/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/utils/encoding.py -------------------------------------------------------------------------------- /clickhouse_backend/utils/timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/utils/timezone.py -------------------------------------------------------------------------------- /clickhouse_backend/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/utils/version.py -------------------------------------------------------------------------------- /clickhouse_backend/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/clickhouse_backend/validators.py -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/compose.yaml -------------------------------------------------------------------------------- /docs/Configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/docs/Configurations.md -------------------------------------------------------------------------------- /docs/Fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/docs/Fields.md -------------------------------------------------------------------------------- /docs/Migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/docs/Migrations.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/docs/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/README.md -------------------------------------------------------------------------------- /example/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/config/asgi.py -------------------------------------------------------------------------------- /example/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/config/settings.py -------------------------------------------------------------------------------- /example/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/config/urls.py -------------------------------------------------------------------------------- /example/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/config/wsgi.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/testapp/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/testapp/apps.py -------------------------------------------------------------------------------- /example/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/testapp/models.py -------------------------------------------------------------------------------- /example/testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/example/testapp/tests.py -------------------------------------------------------------------------------- /example/testapp/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proxy-config/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/proxy-config/haproxy.cfg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/setup.py -------------------------------------------------------------------------------- /tests/aggregates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregates/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/aggregates/models.py -------------------------------------------------------------------------------- /tests/aggregates/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/aggregates/tests.py -------------------------------------------------------------------------------- /tests/aggregation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/aggregation/models.py -------------------------------------------------------------------------------- /tests/aggregation/test_filter_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/aggregation/test_filter_argument.py -------------------------------------------------------------------------------- /tests/aggregation/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/aggregation/tests.py -------------------------------------------------------------------------------- /tests/aggregation_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregation_regress/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/aggregation_regress/models.py -------------------------------------------------------------------------------- /tests/aggregation_regress/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/aggregation_regress/tests.py -------------------------------------------------------------------------------- /tests/annotations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/annotations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/annotations/models.py -------------------------------------------------------------------------------- /tests/annotations/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/annotations/tests.py -------------------------------------------------------------------------------- /tests/auth_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/__init__.py -------------------------------------------------------------------------------- /tests/auth_tests/fixtures/natural.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/fixtures/natural.json -------------------------------------------------------------------------------- /tests/auth_tests/fixtures/regular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/fixtures/regular.json -------------------------------------------------------------------------------- /tests/auth_tests/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/models/__init__.py -------------------------------------------------------------------------------- /tests/auth_tests/models/custom_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/models/custom_permissions.py -------------------------------------------------------------------------------- /tests/auth_tests/models/custom_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/models/custom_user.py -------------------------------------------------------------------------------- /tests/auth_tests/models/is_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/models/is_active.py -------------------------------------------------------------------------------- /tests/auth_tests/models/uuid_pk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/models/uuid_pk.py -------------------------------------------------------------------------------- /tests/auth_tests/models/with_custom_email_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/models/with_custom_email_field.py -------------------------------------------------------------------------------- /tests/auth_tests/models/with_integer_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/models/with_integer_username.py -------------------------------------------------------------------------------- /tests/auth_tests/test_auth_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/test_auth_backends.py -------------------------------------------------------------------------------- /tests/auth_tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/test_basic.py -------------------------------------------------------------------------------- /tests/auth_tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/test_middleware.py -------------------------------------------------------------------------------- /tests/auth_tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/auth_tests/test_models.py -------------------------------------------------------------------------------- /tests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/clickhouse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/backends/clickhouse/test_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/clickhouse/test_creation.py -------------------------------------------------------------------------------- /tests/backends/clickhouse/test_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/clickhouse/test_driver.py -------------------------------------------------------------------------------- /tests/backends/clickhouse/test_introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/clickhouse/test_introspection.py -------------------------------------------------------------------------------- /tests/backends/clickhouse/test_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/clickhouse/test_operations.py -------------------------------------------------------------------------------- /tests/backends/clickhouse/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/clickhouse/tests.py -------------------------------------------------------------------------------- /tests/backends/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/models.py -------------------------------------------------------------------------------- /tests/backends/test_ddl_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/test_ddl_references.py -------------------------------------------------------------------------------- /tests/backends/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/test_utils.py -------------------------------------------------------------------------------- /tests/backends/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/backends/tests.py -------------------------------------------------------------------------------- /tests/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/basic/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/basic/models.py -------------------------------------------------------------------------------- /tests/basic/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/basic/tests.py -------------------------------------------------------------------------------- /tests/clickhouse_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clickhouse_fields/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_fields/models.py -------------------------------------------------------------------------------- /tests/clickhouse_fields/test_arrayfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_fields/test_arrayfield.py -------------------------------------------------------------------------------- /tests/clickhouse_fields/test_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_fields/test_jsonfield.py -------------------------------------------------------------------------------- /tests/clickhouse_fields/test_mapfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_fields/test_mapfield.py -------------------------------------------------------------------------------- /tests/clickhouse_fields/test_tuplefield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_fields/test_tuplefield.py -------------------------------------------------------------------------------- /tests/clickhouse_fields/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_fields/tests.py -------------------------------------------------------------------------------- /tests/clickhouse_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clickhouse_functions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_functions/models.py -------------------------------------------------------------------------------- /tests/clickhouse_functions/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_functions/test_datetime.py -------------------------------------------------------------------------------- /tests/clickhouse_functions/test_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_functions/test_hashes.py -------------------------------------------------------------------------------- /tests/clickhouse_functions/test_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_functions/test_other.py -------------------------------------------------------------------------------- /tests/clickhouse_functions/test_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_functions/test_random.py -------------------------------------------------------------------------------- /tests/clickhouse_functions/test_tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_functions/test_tuples.py -------------------------------------------------------------------------------- /tests/clickhouse_queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clickhouse_queries/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_queries/models.py -------------------------------------------------------------------------------- /tests/clickhouse_queries/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_queries/tests.py -------------------------------------------------------------------------------- /tests/clickhouse_table_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clickhouse_table_engine/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_table_engine/models.py -------------------------------------------------------------------------------- /tests/clickhouse_table_engine/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_table_engine/test_base.py -------------------------------------------------------------------------------- /tests/clickhouse_table_engine/test_distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_table_engine/test_distributed.py -------------------------------------------------------------------------------- /tests/clickhouse_table_engine/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/clickhouse_table_engine/tests.py -------------------------------------------------------------------------------- /tests/custom_migration_operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/custom_migration_operations/more_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/custom_migration_operations/more_operations.py -------------------------------------------------------------------------------- /tests/custom_migration_operations/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/custom_migration_operations/operations.py -------------------------------------------------------------------------------- /tests/dbrouters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/dbrouters.py -------------------------------------------------------------------------------- /tests/expressions_window/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/expressions_window/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/expressions_window/models.py -------------------------------------------------------------------------------- /tests/expressions_window/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/expressions_window/tests.py -------------------------------------------------------------------------------- /tests/inspectdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/inspectdb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/inspectdb/models.py -------------------------------------------------------------------------------- /tests/inspectdb/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/inspectdb/tests.py -------------------------------------------------------------------------------- /tests/migration_test_data_persistence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migration_test_data_persistence/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migration_test_data_persistence/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migration_test_data_persistence/migrations/0002_add_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migration_test_data_persistence/migrations/0002_add_book.py -------------------------------------------------------------------------------- /tests/migration_test_data_persistence/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migration_test_data_persistence/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migration_test_data_persistence/models.py -------------------------------------------------------------------------------- /tests/migration_test_data_persistence/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migration_test_data_persistence/tests.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/deprecated_field_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/deprecated_field_migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/deprecated_field_migrations/0002_remove_ipaddressfield_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/deprecated_field_migrations/0002_remove_ipaddressfield_ip.py -------------------------------------------------------------------------------- /tests/migrations/deprecated_field_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/file.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/faulty_migrations/namespace/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/author_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/author_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/alter_fk/author_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/author_app/migrations/0002_alter_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/alter_fk/author_app/migrations/0002_alter_id.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/author_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/book_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/book_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/alter_fk/book_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/alter_fk/book_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/migrations/0002_conflicting_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/migrations/0002_conflicting_second.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/migrations/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/migrations/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/conflicting_app_with_dependencies/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_a/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/migrations/0002_a2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_a/migrations/0002_a2.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/migrations/0003_a3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_a/migrations/0003_a3.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/migrations/0004_a4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_a/migrations/0004_a4.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_a/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_a/models.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_b/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_b/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_b/migrations/0002_b2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_b/migrations/0002_b2.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_b/migrations/0003_b3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_b/migrations/0003_b3.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_b/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_b/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_b/models.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_c/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_c/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_c/migrations/0002_c2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_c/migrations/0002_c2.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_c/migrations/0003_c3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_c/migrations/0003_c3.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_c/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/lookuperror_c/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/lookuperror_c/models.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/migrated_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/migrated_app/models.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_unapplied_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_unapplied_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/migrated_unapplied_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_unapplied_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/migrated_unapplied_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/migrated_unapplied_app/models.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_a/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/mutate_state_a/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_a/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_b/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/mutate_state_b/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_b/migrations/0002_add_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/mutate_state_b/migrations/0002_add_field.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/mutate_state_b/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/normal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/unmigrated_app/models.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app_simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app_simple/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/unmigrated_app_simple/models.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app_syncdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unmigrated_app_syncdb/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/unmigrated_app_syncdb/models.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0002_conflicting_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0002_conflicting_second.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/unspecified_app_with_conflict/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/with_package_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/with_package_model/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/without_init_file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/migrations_test_apps/without_init_file/migrations/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/models.py -------------------------------------------------------------------------------- /tests/migrations/related_models_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/routers.py -------------------------------------------------------------------------------- /tests/migrations/test_add_many_to_many_field_initial/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_add_many_to_many_field_initial/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_add_many_to_many_field_initial/0002_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_add_many_to_many_field_initial/0002_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_add_many_to_many_field_initial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_auto_now_add/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_auto_now_add/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_auto_now_add/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_autodetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_autodetector.py -------------------------------------------------------------------------------- /tests/migrations/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_base.py -------------------------------------------------------------------------------- /tests/migrations/test_deprecated_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_deprecated_fields.py -------------------------------------------------------------------------------- /tests/migrations/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_exceptions.py -------------------------------------------------------------------------------- /tests/migrations/test_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_executor.py -------------------------------------------------------------------------------- /tests/migrations/test_fake_initial_case_insensitive/fake_initial/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_fake_initial_case_insensitive/fake_initial/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_fake_initial_case_insensitive/fake_initial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_fake_initial_case_insensitive/initial/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_fake_initial_case_insensitive/initial/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_fake_initial_case_insensitive/initial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_graph.py -------------------------------------------------------------------------------- /tests/migrations/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_loader.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_atomic_operation/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_atomic_operation/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_atomic_operation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_backwards_deps_1/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_backwards_deps_1/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_backwards_deps_1/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_backwards_deps_1/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_bad_pyc/0001_initial.pyc-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_bad_pyc/0001_initial.pyc-tpl -------------------------------------------------------------------------------- /tests/migrations/test_migrations_bad_pyc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_clashing_prefix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_clashing_prefix/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_clashing_prefix/a.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_clashing_prefix/ab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_clashing_prefix/ab.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_conflict/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict/0002_conflicting_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_conflict/0002_conflicting_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_conflict/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict_long_name/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_conflict_long_name/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict_long_name/0002_conflicting_second_migration_with_long_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_conflict_long_name/0002_conflicting_second_migration_with_long_name.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict_long_name/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_conflict_long_name/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_conflict_long_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_custom_user/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_custom_user/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_custom_user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_empty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_fake_split_initial/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_fake_split_initial/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_fake_split_initial/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_fake_split_initial/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_fake_split_initial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_first/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_first/second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_first/second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_first/thefirst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_first/thefirst.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_initial_false/0001_not_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_initial_false/0001_not_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_initial_false/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_manual_porting/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_manual_porting/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_manual_porting/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_manual_porting/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_manual_porting/0003_third.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_manual_porting/0003_third.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_manual_porting/0004_fourth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_manual_porting/0004_fourth.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_manual_porting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_namespace_package/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_namespace_package/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_ancestor/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_no_ancestor/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_ancestor/0002_conflicting_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_no_ancestor/0002_conflicting_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_ancestor/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_no_ancestor/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_ancestor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_changes/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_no_changes/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_changes/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_no_changes/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_changes/0003_third.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_no_changes/0003_third.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_changes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_default/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_no_default/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_init/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_operations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_no_operations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_no_operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_non_atomic/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_non_atomic/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_non_atomic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_noop/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_noop/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_noop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_order/0001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_order/0001.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_plan/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_plan/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_plan/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_plan/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_plan/0003_third.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_plan/0003_third.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_plan/0004_fourth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_plan/0004_fourth.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_plan/0005_fifth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_plan/0005_fifth.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_plan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/.util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_private/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/_util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_private/~util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_run_before/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_run_before/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_run_before/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_run_before/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_run_before/0003_third.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_run_before/0003_third.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_run_before/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed/0001_squashed_0002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed/0001_squashed_0002.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/1_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex/1_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/2_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex/2_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/3_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex/3_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/3_squashed_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex/3_squashed_5.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/4_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex/4_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/5_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex/5_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/6_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex/6_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/7_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex/7_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app1/1_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex_multi_apps/app1/1_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app1/2_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex_multi_apps/app1/2_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app1/2_squashed_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex_multi_apps/app1/2_squashed_3.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app1/3_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex_multi_apps/app1/3_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app1/4_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex_multi_apps/app1/4_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app2/1_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex_multi_apps/app2/1_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app2/1_squashed_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex_multi_apps/app2/1_squashed_2.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app2/2_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_complex_multi_apps/app2/2_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_complex_multi_apps/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_erroneous/1_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_erroneous/1_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_erroneous/2_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_erroneous/2_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_erroneous/3_squashed_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_erroneous/3_squashed_5.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_erroneous/6_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_erroneous/6_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_erroneous/7_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_erroneous/7_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_erroneous/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_extra/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_extra/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_extra/0001_squashed_0002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_extra/0001_squashed_0002.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_extra/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_extra/0002_second.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_extra/0003_third.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_extra/0003_third.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_no_replaces/0001_squashed_0002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_no_replaces/0001_squashed_0002.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_no_replaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app1/1_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_ref_squashed/app1/1_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app1/2_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_ref_squashed/app1/2_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app1/2_squashed_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_ref_squashed/app1/2_squashed_3.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app1/3_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_ref_squashed/app1/3_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app1/4_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_ref_squashed/app1/4_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app2/1_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_ref_squashed/app2/1_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app2/1_squashed_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_ref_squashed/app2/1_squashed_2.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app2/2_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_squashed_ref_squashed/app2/2_auto.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_squashed_ref_squashed/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_migrations_unmigdep/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_migrations_unmigdep/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/test_migrations_unmigdep/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/test_multidb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_multidb.py -------------------------------------------------------------------------------- /tests/migrations/test_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_operations.py -------------------------------------------------------------------------------- /tests/migrations/test_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_optimizer.py -------------------------------------------------------------------------------- /tests/migrations/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_state.py -------------------------------------------------------------------------------- /tests/migrations/test_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations/test_writer.py -------------------------------------------------------------------------------- /tests/migrations2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations2/models.py -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations2/test_migrations_2/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2_first/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations2/test_migrations_2_first/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2_first/0002_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations2/test_migrations_2_first/0002_second.py -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2_first/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2_no_deps/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations2/test_migrations_2_no_deps/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations2/test_migrations_2_no_deps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations_without_clickhousemodel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations_without_clickhousemodel/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/migrations_without_clickhousemodel/tests.py -------------------------------------------------------------------------------- /tests/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/queries/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/queries/models.py -------------------------------------------------------------------------------- /tests/queries/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/queries/tests.py -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayvynl/django-clickhouse-backend/HEAD/tox.ini --------------------------------------------------------------------------------