sqlmesh 0.213.1.dev1__py3-none-any.whl → 0.227.2.dev4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sqlmesh/__init__.py +12 -2
- sqlmesh/_version.py +2 -2
- sqlmesh/cli/main.py +0 -44
- sqlmesh/cli/project_init.py +11 -2
- sqlmesh/core/_typing.py +1 -0
- sqlmesh/core/audit/definition.py +8 -2
- sqlmesh/core/config/__init__.py +1 -1
- sqlmesh/core/config/connection.py +17 -5
- sqlmesh/core/config/dbt.py +13 -0
- sqlmesh/core/config/janitor.py +12 -0
- sqlmesh/core/config/loader.py +7 -0
- sqlmesh/core/config/model.py +2 -0
- sqlmesh/core/config/root.py +3 -0
- sqlmesh/core/console.py +81 -3
- sqlmesh/core/constants.py +1 -1
- sqlmesh/core/context.py +69 -26
- sqlmesh/core/dialect.py +3 -0
- sqlmesh/core/engine_adapter/_typing.py +2 -0
- sqlmesh/core/engine_adapter/base.py +322 -22
- sqlmesh/core/engine_adapter/base_postgres.py +17 -1
- sqlmesh/core/engine_adapter/bigquery.py +146 -7
- sqlmesh/core/engine_adapter/clickhouse.py +17 -13
- sqlmesh/core/engine_adapter/databricks.py +33 -2
- sqlmesh/core/engine_adapter/fabric.py +10 -29
- sqlmesh/core/engine_adapter/mixins.py +142 -48
- sqlmesh/core/engine_adapter/mssql.py +15 -4
- sqlmesh/core/engine_adapter/mysql.py +2 -2
- sqlmesh/core/engine_adapter/postgres.py +9 -3
- sqlmesh/core/engine_adapter/redshift.py +4 -0
- sqlmesh/core/engine_adapter/risingwave.py +1 -0
- sqlmesh/core/engine_adapter/shared.py +6 -0
- sqlmesh/core/engine_adapter/snowflake.py +82 -11
- sqlmesh/core/engine_adapter/spark.py +14 -10
- sqlmesh/core/engine_adapter/trino.py +4 -2
- sqlmesh/core/environment.py +2 -0
- sqlmesh/core/janitor.py +181 -0
- sqlmesh/core/lineage.py +1 -0
- sqlmesh/core/linter/definition.py +13 -13
- sqlmesh/core/linter/rules/builtin.py +29 -0
- sqlmesh/core/macros.py +35 -13
- sqlmesh/core/model/common.py +2 -0
- sqlmesh/core/model/definition.py +82 -28
- sqlmesh/core/model/kind.py +66 -2
- sqlmesh/core/model/meta.py +108 -4
- sqlmesh/core/node.py +101 -1
- sqlmesh/core/plan/builder.py +18 -10
- sqlmesh/core/plan/common.py +199 -2
- sqlmesh/core/plan/definition.py +25 -6
- sqlmesh/core/plan/evaluator.py +75 -113
- sqlmesh/core/plan/explainer.py +90 -8
- sqlmesh/core/plan/stages.py +42 -21
- sqlmesh/core/renderer.py +78 -32
- sqlmesh/core/scheduler.py +102 -22
- sqlmesh/core/selector.py +137 -9
- sqlmesh/core/signal.py +64 -1
- sqlmesh/core/snapshot/__init__.py +2 -0
- sqlmesh/core/snapshot/definition.py +146 -34
- sqlmesh/core/snapshot/evaluator.py +689 -124
- sqlmesh/core/state_sync/__init__.py +0 -1
- sqlmesh/core/state_sync/base.py +55 -33
- sqlmesh/core/state_sync/cache.py +12 -7
- sqlmesh/core/state_sync/common.py +216 -111
- sqlmesh/core/state_sync/db/environment.py +6 -4
- sqlmesh/core/state_sync/db/facade.py +42 -24
- sqlmesh/core/state_sync/db/interval.py +27 -7
- sqlmesh/core/state_sync/db/migrator.py +34 -16
- sqlmesh/core/state_sync/db/snapshot.py +177 -169
- sqlmesh/core/table_diff.py +2 -2
- sqlmesh/core/test/context.py +2 -0
- sqlmesh/core/test/definition.py +14 -9
- sqlmesh/dbt/adapter.py +22 -16
- sqlmesh/dbt/basemodel.py +75 -56
- sqlmesh/dbt/builtin.py +116 -12
- sqlmesh/dbt/column.py +17 -5
- sqlmesh/dbt/common.py +19 -5
- sqlmesh/dbt/context.py +14 -1
- sqlmesh/dbt/loader.py +61 -9
- sqlmesh/dbt/manifest.py +174 -16
- sqlmesh/dbt/model.py +183 -85
- sqlmesh/dbt/package.py +16 -1
- sqlmesh/dbt/profile.py +3 -3
- sqlmesh/dbt/project.py +12 -7
- sqlmesh/dbt/seed.py +6 -1
- sqlmesh/dbt/source.py +13 -1
- sqlmesh/dbt/target.py +25 -6
- sqlmesh/dbt/test.py +36 -5
- sqlmesh/migrations/v0000_baseline.py +95 -0
- sqlmesh/migrations/v0061_mysql_fix_blob_text_type.py +5 -7
- sqlmesh/migrations/v0062_add_model_gateway.py +5 -1
- sqlmesh/migrations/v0063_change_signals.py +5 -3
- sqlmesh/migrations/v0064_join_when_matched_strings.py +5 -3
- sqlmesh/migrations/v0065_add_model_optimize.py +5 -1
- sqlmesh/migrations/v0066_add_auto_restatements.py +8 -3
- sqlmesh/migrations/v0067_add_tsql_date_full_precision.py +5 -1
- sqlmesh/migrations/v0068_include_unrendered_query_in_metadata_hash.py +5 -1
- sqlmesh/migrations/v0069_update_dev_table_suffix.py +5 -3
- sqlmesh/migrations/v0070_include_grains_in_metadata_hash.py +5 -1
- sqlmesh/migrations/v0071_add_dev_version_to_intervals.py +9 -5
- sqlmesh/migrations/v0072_add_environment_statements.py +5 -3
- sqlmesh/migrations/v0073_remove_symbolic_disable_restatement.py +5 -3
- sqlmesh/migrations/v0074_add_partition_by_time_column_property.py +5 -1
- sqlmesh/migrations/v0075_remove_validate_query.py +5 -3
- sqlmesh/migrations/v0076_add_cron_tz.py +5 -1
- sqlmesh/migrations/v0077_fix_column_type_hash_calculation.py +5 -1
- sqlmesh/migrations/v0078_warn_if_non_migratable_python_env.py +5 -3
- sqlmesh/migrations/v0079_add_gateway_managed_property.py +10 -5
- sqlmesh/migrations/v0080_add_batch_size_to_scd_type_2_models.py +5 -1
- sqlmesh/migrations/v0081_update_partitioned_by.py +5 -3
- sqlmesh/migrations/v0082_warn_if_incorrectly_duplicated_statements.py +5 -3
- sqlmesh/migrations/v0083_use_sql_for_scd_time_data_type_data_hash.py +5 -1
- sqlmesh/migrations/v0084_normalize_quote_when_matched_and_merge_filter.py +5 -1
- sqlmesh/migrations/v0085_deterministic_repr.py +5 -3
- sqlmesh/migrations/v0086_check_deterministic_bug.py +5 -3
- sqlmesh/migrations/v0087_normalize_blueprint_variables.py +5 -3
- sqlmesh/migrations/v0088_warn_about_variable_python_env_diffs.py +5 -3
- sqlmesh/migrations/v0089_add_virtual_environment_mode.py +5 -1
- sqlmesh/migrations/v0090_add_forward_only_column.py +9 -5
- sqlmesh/migrations/v0091_on_additive_change.py +5 -1
- sqlmesh/migrations/v0092_warn_about_dbt_data_type_diff.py +5 -3
- sqlmesh/migrations/v0093_use_raw_sql_in_fingerprint.py +5 -1
- sqlmesh/migrations/v0094_add_dev_version_and_fingerprint_columns.py +123 -0
- sqlmesh/migrations/v0095_warn_about_dbt_raw_sql_diff.py +49 -0
- sqlmesh/migrations/v0096_remove_plan_dags_table.py +13 -0
- sqlmesh/migrations/v0097_add_dbt_name_in_node.py +9 -0
- sqlmesh/migrations/{v0060_move_audits_to_model.py → v0098_add_dbt_node_info_in_node.py} +33 -16
- sqlmesh/migrations/v0099_add_last_altered_to_intervals.py +25 -0
- sqlmesh/migrations/v0100_add_grants_and_grants_target_layer.py +9 -0
- sqlmesh/utils/__init__.py +8 -1
- sqlmesh/utils/cache.py +5 -1
- sqlmesh/utils/connection_pool.py +2 -1
- sqlmesh/utils/dag.py +65 -10
- sqlmesh/utils/date.py +8 -1
- sqlmesh/utils/errors.py +8 -0
- sqlmesh/utils/jinja.py +54 -4
- sqlmesh/utils/pydantic.py +6 -6
- sqlmesh/utils/windows.py +13 -3
- {sqlmesh-0.213.1.dev1.dist-info → sqlmesh-0.227.2.dev4.dist-info}/METADATA +7 -10
- sqlmesh-0.227.2.dev4.dist-info/RECORD +370 -0
- sqlmesh_dbt/cli.py +70 -7
- sqlmesh_dbt/console.py +14 -6
- sqlmesh_dbt/operations.py +103 -24
- sqlmesh_dbt/selectors.py +39 -1
- web/client/dist/assets/{Audits-Ucsx1GzF.js → Audits-CBiYyyx-.js} +1 -1
- web/client/dist/assets/{Banner-BWDzvavM.js → Banner-DSRbUlO5.js} +1 -1
- web/client/dist/assets/{ChevronDownIcon-D2VL13Ah.js → ChevronDownIcon-MK_nrjD_.js} +1 -1
- web/client/dist/assets/{ChevronRightIcon-DWGYbf1l.js → ChevronRightIcon-CLWtT22Q.js} +1 -1
- web/client/dist/assets/{Content-DdHDZM3I.js → Content-BNuGZN5l.js} +1 -1
- web/client/dist/assets/{Content-Bikfy8fh.js → Content-CSHJyW0n.js} +1 -1
- web/client/dist/assets/{Data-CzAJH7rW.js → Data-C1oRDbLx.js} +1 -1
- web/client/dist/assets/{DataCatalog-BJF11g8f.js → DataCatalog-HXyX2-_j.js} +1 -1
- web/client/dist/assets/{Editor-s0SBpV2y.js → Editor-BDyfpUuw.js} +1 -1
- web/client/dist/assets/{Editor-DgLhgKnm.js → Editor-D0jNItwC.js} +1 -1
- web/client/dist/assets/{Errors-D0m0O1d3.js → Errors-BfuFLcPi.js} +1 -1
- web/client/dist/assets/{FileExplorer-CEv0vXkt.js → FileExplorer-BR9IE3he.js} +1 -1
- web/client/dist/assets/{Footer-BwzXn8Ew.js → Footer-CgBEtiAh.js} +1 -1
- web/client/dist/assets/{Header-6heDkEqG.js → Header-DSqR6nSO.js} +1 -1
- web/client/dist/assets/{Input-obuJsD6k.js → Input-B-oZ6fGO.js} +1 -1
- web/client/dist/assets/Lineage-DYQVwDbD.js +1 -0
- web/client/dist/assets/{ListboxShow-HM9_qyrt.js → ListboxShow-BE5-xevs.js} +1 -1
- web/client/dist/assets/{ModelLineage-zWdKo0U2.js → ModelLineage-DkIFAYo4.js} +1 -1
- web/client/dist/assets/{Models-Bcu66SRz.js → Models-D5dWr8RB.js} +1 -1
- web/client/dist/assets/{Page-BWEEQfIt.js → Page-C-XfU5BR.js} +1 -1
- web/client/dist/assets/{Plan-C4gXCqlf.js → Plan-ZEuTINBq.js} +1 -1
- web/client/dist/assets/{PlusCircleIcon-CVDO651q.js → PlusCircleIcon-DVXAHG8_.js} +1 -1
- web/client/dist/assets/{ReportErrors-BT6xFwAr.js → ReportErrors-B7FEPzMB.js} +1 -1
- web/client/dist/assets/{Root-ryJoBK4h.js → Root-8aZyhPxF.js} +1 -1
- web/client/dist/assets/{SearchList-DB04sPb9.js → SearchList-W_iT2G82.js} +1 -1
- web/client/dist/assets/{SelectEnvironment-CUYcXUu6.js → SelectEnvironment-C65jALmO.js} +1 -1
- web/client/dist/assets/{SourceList-Doo_9ZGp.js → SourceList-DSLO6nVJ.js} +1 -1
- web/client/dist/assets/{SourceListItem-D5Mj7Dly.js → SourceListItem-BHt8d9-I.js} +1 -1
- web/client/dist/assets/{SplitPane-qHmkD1qy.js → SplitPane-CViaZmw6.js} +1 -1
- web/client/dist/assets/{Tests-DH1Z74ML.js → Tests-DhaVt5t1.js} +1 -1
- web/client/dist/assets/{Welcome-DqUJUNMF.js → Welcome-DvpjH-_4.js} +1 -1
- web/client/dist/assets/context-BctCsyGb.js +71 -0
- web/client/dist/assets/{context-Dr54UHLi.js → context-DFNeGsFF.js} +1 -1
- web/client/dist/assets/{editor-DYIP1yQ4.js → editor-CcO28cqd.js} +1 -1
- web/client/dist/assets/{file-DarlIDVi.js → file-CvJN3aZO.js} +1 -1
- web/client/dist/assets/{floating-ui.react-dom-BH3TFvkM.js → floating-ui.react-dom-CjE-JNW1.js} +1 -1
- web/client/dist/assets/{help-Bl8wqaQc.js → help-DuPhjipa.js} +1 -1
- web/client/dist/assets/{index-D1sR7wpN.js → index-C-dJH7yZ.js} +1 -1
- web/client/dist/assets/{index-O3mjYpnE.js → index-Dj0i1-CA.js} +2 -2
- web/client/dist/assets/{plan-CehRrJUG.js → plan-BTRSbjKn.js} +1 -1
- web/client/dist/assets/{popover-CqgMRE0G.js → popover-_Sf0yvOI.js} +1 -1
- web/client/dist/assets/{project-6gxepOhm.js → project-BvSOI8MY.js} +1 -1
- web/client/dist/index.html +1 -1
- sqlmesh/integrations/llm.py +0 -56
- sqlmesh/migrations/v0001_init.py +0 -60
- sqlmesh/migrations/v0002_remove_identify.py +0 -5
- sqlmesh/migrations/v0003_move_batch_size.py +0 -34
- sqlmesh/migrations/v0004_environmnent_add_finalized_at.py +0 -23
- sqlmesh/migrations/v0005_create_seed_table.py +0 -24
- sqlmesh/migrations/v0006_change_seed_hash.py +0 -5
- sqlmesh/migrations/v0007_env_table_info_to_kind.py +0 -99
- sqlmesh/migrations/v0008_create_intervals_table.py +0 -38
- sqlmesh/migrations/v0009_remove_pre_post_hooks.py +0 -62
- sqlmesh/migrations/v0010_seed_hash_batch_size.py +0 -5
- sqlmesh/migrations/v0011_add_model_kind_name.py +0 -63
- sqlmesh/migrations/v0012_update_jinja_expressions.py +0 -86
- sqlmesh/migrations/v0013_serde_using_model_dialects.py +0 -87
- sqlmesh/migrations/v0014_fix_dev_intervals.py +0 -14
- sqlmesh/migrations/v0015_environment_add_promoted_snapshot_ids.py +0 -26
- sqlmesh/migrations/v0016_fix_windows_path.py +0 -59
- sqlmesh/migrations/v0017_fix_windows_seed_path.py +0 -55
- sqlmesh/migrations/v0018_rename_snapshot_model_to_node.py +0 -53
- sqlmesh/migrations/v0019_add_env_suffix_target.py +0 -28
- sqlmesh/migrations/v0020_remove_redundant_attributes_from_dbt_models.py +0 -80
- sqlmesh/migrations/v0021_fix_table_properties.py +0 -62
- sqlmesh/migrations/v0022_move_project_to_model.py +0 -54
- sqlmesh/migrations/v0023_fix_added_models_with_forward_only_parents.py +0 -65
- sqlmesh/migrations/v0024_replace_model_kind_name_enum_with_value.py +0 -55
- sqlmesh/migrations/v0025_fix_intervals_and_missing_change_category.py +0 -117
- sqlmesh/migrations/v0026_remove_dialect_from_seed.py +0 -55
- sqlmesh/migrations/v0027_minute_interval_to_five.py +0 -57
- sqlmesh/migrations/v0028_add_plan_dags_table.py +0 -29
- sqlmesh/migrations/v0029_generate_schema_types_using_dialect.py +0 -69
- sqlmesh/migrations/v0030_update_unrestorable_snapshots.py +0 -65
- sqlmesh/migrations/v0031_remove_dbt_target_fields.py +0 -65
- sqlmesh/migrations/v0032_add_sqlmesh_version.py +0 -25
- sqlmesh/migrations/v0033_mysql_fix_blob_text_type.py +0 -45
- sqlmesh/migrations/v0034_add_default_catalog.py +0 -367
- sqlmesh/migrations/v0035_add_catalog_name_override.py +0 -22
- sqlmesh/migrations/v0036_delete_plan_dags_bug_fix.py +0 -14
- sqlmesh/migrations/v0037_remove_dbt_is_incremental_macro.py +0 -61
- sqlmesh/migrations/v0038_add_expiration_ts_to_snapshot.py +0 -73
- sqlmesh/migrations/v0039_include_environment_in_plan_dag_spec.py +0 -68
- sqlmesh/migrations/v0040_add_previous_finalized_snapshots.py +0 -26
- sqlmesh/migrations/v0041_remove_hash_raw_query_attribute.py +0 -59
- sqlmesh/migrations/v0042_trim_indirect_versions.py +0 -66
- sqlmesh/migrations/v0043_fix_remove_obsolete_attributes_in_plan_dags.py +0 -61
- sqlmesh/migrations/v0044_quote_identifiers_in_model_attributes.py +0 -5
- sqlmesh/migrations/v0045_move_gateway_variable.py +0 -70
- sqlmesh/migrations/v0046_add_batch_concurrency.py +0 -8
- sqlmesh/migrations/v0047_change_scd_string_to_column.py +0 -5
- sqlmesh/migrations/v0048_drop_indirect_versions.py +0 -59
- sqlmesh/migrations/v0049_replace_identifier_with_version_in_seeds_table.py +0 -57
- sqlmesh/migrations/v0050_drop_seeds_table.py +0 -11
- sqlmesh/migrations/v0051_rename_column_descriptions.py +0 -65
- sqlmesh/migrations/v0052_add_normalize_name_in_environment_naming_info.py +0 -28
- sqlmesh/migrations/v0053_custom_model_kind_extra_attributes.py +0 -5
- sqlmesh/migrations/v0054_fix_trailing_comments.py +0 -5
- sqlmesh/migrations/v0055_add_updated_ts_unpaused_ts_ttl_ms_unrestorable_to_snapshot.py +0 -132
- sqlmesh/migrations/v0056_restore_table_indexes.py +0 -118
- sqlmesh/migrations/v0057_add_table_format.py +0 -5
- sqlmesh/migrations/v0058_add_requirements.py +0 -26
- sqlmesh/migrations/v0059_add_physical_version.py +0 -5
- sqlmesh-0.213.1.dev1.dist-info/RECORD +0 -421
- web/client/dist/assets/Lineage-D0Hgdz2v.js +0 -1
- web/client/dist/assets/context-DgX0fp2E.js +0 -68
- {sqlmesh-0.213.1.dev1.dist-info → sqlmesh-0.227.2.dev4.dist-info}/WHEEL +0 -0
- {sqlmesh-0.213.1.dev1.dist-info → sqlmesh-0.227.2.dev4.dist-info}/entry_points.txt +0 -0
- {sqlmesh-0.213.1.dev1.dist-info → sqlmesh-0.227.2.dev4.dist-info}/licenses/LICENSE +0 -0
- {sqlmesh-0.213.1.dev1.dist-info → sqlmesh-0.227.2.dev4.dist-info}/top_level.txt +0 -0
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
"""Readds indexes and primary keys in case tables were restored from a backup."""
|
|
2
|
-
|
|
3
|
-
from sqlglot import exp
|
|
4
|
-
from sqlmesh.utils import random_id
|
|
5
|
-
from sqlmesh.utils.migration import index_text_type
|
|
6
|
-
from sqlmesh.utils.migration import blob_text_type
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
def migrate(state_sync, **kwargs): # type: ignore
|
|
10
|
-
schema = state_sync.schema
|
|
11
|
-
engine_adapter = state_sync.engine_adapter
|
|
12
|
-
if not engine_adapter.SUPPORTS_INDEXES:
|
|
13
|
-
return
|
|
14
|
-
|
|
15
|
-
intervals_table = "_intervals"
|
|
16
|
-
snapshots_table = "_snapshots"
|
|
17
|
-
environments_table = "_environments"
|
|
18
|
-
if state_sync.schema:
|
|
19
|
-
intervals_table = f"{schema}.{intervals_table}"
|
|
20
|
-
snapshots_table = f"{schema}.{snapshots_table}"
|
|
21
|
-
environments_table = f"{schema}.{environments_table}"
|
|
22
|
-
|
|
23
|
-
table_suffix = random_id(short=True)
|
|
24
|
-
|
|
25
|
-
index_type = index_text_type(engine_adapter.dialect)
|
|
26
|
-
blob_type = blob_text_type(engine_adapter.dialect)
|
|
27
|
-
|
|
28
|
-
new_snapshots_table = f"{snapshots_table}__{table_suffix}"
|
|
29
|
-
snapshots_columns_to_types = {
|
|
30
|
-
"name": exp.DataType.build(index_type),
|
|
31
|
-
"identifier": exp.DataType.build(index_type),
|
|
32
|
-
"version": exp.DataType.build(index_type),
|
|
33
|
-
"snapshot": exp.DataType.build(blob_type),
|
|
34
|
-
"kind_name": exp.DataType.build(index_type),
|
|
35
|
-
"updated_ts": exp.DataType.build("bigint"),
|
|
36
|
-
"unpaused_ts": exp.DataType.build("bigint"),
|
|
37
|
-
"ttl_ms": exp.DataType.build("bigint"),
|
|
38
|
-
"unrestorable": exp.DataType.build("boolean"),
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
new_environments_table = f"{environments_table}__{table_suffix}"
|
|
42
|
-
environments_columns_to_types = {
|
|
43
|
-
"name": exp.DataType.build(index_type),
|
|
44
|
-
"snapshots": exp.DataType.build(blob_type),
|
|
45
|
-
"start_at": exp.DataType.build("text"),
|
|
46
|
-
"end_at": exp.DataType.build("text"),
|
|
47
|
-
"plan_id": exp.DataType.build("text"),
|
|
48
|
-
"previous_plan_id": exp.DataType.build("text"),
|
|
49
|
-
"expiration_ts": exp.DataType.build("bigint"),
|
|
50
|
-
"finalized_ts": exp.DataType.build("bigint"),
|
|
51
|
-
"promoted_snapshot_ids": exp.DataType.build(blob_type),
|
|
52
|
-
"suffix_target": exp.DataType.build("text"),
|
|
53
|
-
"catalog_name_override": exp.DataType.build("text"),
|
|
54
|
-
"previous_finalized_snapshots": exp.DataType.build(blob_type),
|
|
55
|
-
"normalize_name": exp.DataType.build("boolean"),
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
new_intervals_table = f"{intervals_table}__{table_suffix}"
|
|
59
|
-
intervals_columns_to_types = {
|
|
60
|
-
"id": exp.DataType.build(index_type),
|
|
61
|
-
"created_ts": exp.DataType.build("bigint"),
|
|
62
|
-
"name": exp.DataType.build(index_type),
|
|
63
|
-
"identifier": exp.DataType.build(index_type),
|
|
64
|
-
"version": exp.DataType.build(index_type),
|
|
65
|
-
"start_ts": exp.DataType.build("bigint"),
|
|
66
|
-
"end_ts": exp.DataType.build("bigint"),
|
|
67
|
-
"is_dev": exp.DataType.build("boolean"),
|
|
68
|
-
"is_removed": exp.DataType.build("boolean"),
|
|
69
|
-
"is_compacted": exp.DataType.build("boolean"),
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
# Recreate the snapshots table and its indexes.
|
|
73
|
-
engine_adapter.create_table(
|
|
74
|
-
new_snapshots_table, snapshots_columns_to_types, primary_key=("name", "identifier")
|
|
75
|
-
)
|
|
76
|
-
engine_adapter.create_index(
|
|
77
|
-
new_snapshots_table, "_snapshots_name_version_idx", ("name", "version")
|
|
78
|
-
)
|
|
79
|
-
engine_adapter.insert_append(
|
|
80
|
-
new_snapshots_table,
|
|
81
|
-
exp.select("*").from_(snapshots_table),
|
|
82
|
-
target_columns_to_types=snapshots_columns_to_types,
|
|
83
|
-
)
|
|
84
|
-
|
|
85
|
-
# Recreate the environments table and its indexes.
|
|
86
|
-
engine_adapter.create_table(
|
|
87
|
-
new_environments_table, environments_columns_to_types, primary_key=("name",)
|
|
88
|
-
)
|
|
89
|
-
engine_adapter.insert_append(
|
|
90
|
-
new_environments_table,
|
|
91
|
-
exp.select("*").from_(environments_table),
|
|
92
|
-
target_columns_to_types=environments_columns_to_types,
|
|
93
|
-
)
|
|
94
|
-
|
|
95
|
-
# Recreate the intervals table and its indexes.
|
|
96
|
-
engine_adapter.create_table(
|
|
97
|
-
new_intervals_table, intervals_columns_to_types, primary_key=("id",)
|
|
98
|
-
)
|
|
99
|
-
engine_adapter.create_index(
|
|
100
|
-
new_intervals_table, "_intervals_name_identifier_idx", ("name", "identifier")
|
|
101
|
-
)
|
|
102
|
-
engine_adapter.create_index(
|
|
103
|
-
new_intervals_table, "_intervals_name_version_idx", ("name", "version")
|
|
104
|
-
)
|
|
105
|
-
engine_adapter.insert_append(
|
|
106
|
-
new_intervals_table,
|
|
107
|
-
exp.select("*").from_(intervals_table),
|
|
108
|
-
target_columns_to_types=intervals_columns_to_types,
|
|
109
|
-
)
|
|
110
|
-
|
|
111
|
-
# Drop old tables.
|
|
112
|
-
for table in (snapshots_table, environments_table, intervals_table):
|
|
113
|
-
engine_adapter.drop_table(table)
|
|
114
|
-
|
|
115
|
-
# Replace old tables with new ones.
|
|
116
|
-
engine_adapter.rename_table(new_snapshots_table, snapshots_table)
|
|
117
|
-
engine_adapter.rename_table(new_environments_table, environments_table)
|
|
118
|
-
engine_adapter.rename_table(new_intervals_table, intervals_table)
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"""Add requirements to environments table"""
|
|
2
|
-
|
|
3
|
-
from sqlglot import exp
|
|
4
|
-
|
|
5
|
-
from sqlmesh.utils.migration import blob_text_type
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
def migrate(state_sync, **kwargs): # type: ignore
|
|
9
|
-
engine_adapter = state_sync.engine_adapter
|
|
10
|
-
environments_table = "_environments"
|
|
11
|
-
if state_sync.schema:
|
|
12
|
-
environments_table = f"{state_sync.schema}.{environments_table}"
|
|
13
|
-
|
|
14
|
-
blob_type = blob_text_type(engine_adapter.dialect)
|
|
15
|
-
alter_table_exp = exp.Alter(
|
|
16
|
-
this=exp.to_table(environments_table),
|
|
17
|
-
kind="TABLE",
|
|
18
|
-
actions=[
|
|
19
|
-
exp.ColumnDef(
|
|
20
|
-
this=exp.to_column("requirements"),
|
|
21
|
-
kind=exp.DataType.build(blob_type),
|
|
22
|
-
)
|
|
23
|
-
],
|
|
24
|
-
)
|
|
25
|
-
|
|
26
|
-
engine_adapter.execute(alter_table_exp)
|
|
@@ -1,421 +0,0 @@
|
|
|
1
|
-
sqlmesh/__init__.py,sha256=QjwaamJIdW7voXoS880yAx7tHm-Im4_mqGA-XJgafos,7631
|
|
2
|
-
sqlmesh/_version.py,sha256=Gqp_V-4oIaHkfhMImiYV6w1Wu2OWcJzioO5HRDMDtok,721
|
|
3
|
-
sqlmesh/magics.py,sha256=xLh3u4eqpVrKRVN5KF3X84RPRqjygAB9AJP1TXwH8hg,42086
|
|
4
|
-
sqlmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
sqlmesh/cicd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
sqlmesh/cicd/bot.py,sha256=2zlbn-DXkqQzr3lA0__IGU4XaIfXBXBKLWXNI2DRJX8,759
|
|
7
|
-
sqlmesh/cicd/config.py,sha256=mpgkisSBBovlNrNZir2unT8Wes6b38RW2UsU_o4e8vY,109
|
|
8
|
-
sqlmesh/cli/__init__.py,sha256=MAXAyO7isbyM-PaSdFjkJNcjn32WjOl0XzxT5gvp_vo,1690
|
|
9
|
-
sqlmesh/cli/main.py,sha256=NCJSUCatDqmiGZAMJhWg-HArGUx1NVH-ZQwHHLeyZdY,35900
|
|
10
|
-
sqlmesh/cli/options.py,sha256=8qEGWivk4urGikpEmaU9T8WsyaZtjCpmW4Ed25iQ73I,2543
|
|
11
|
-
sqlmesh/cli/project_init.py,sha256=OJvxZ1yrrvLLiN7ZF-8WbdWosSo7Nq7JXl3aCxQ6OaE,17500
|
|
12
|
-
sqlmesh/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
sqlmesh/core/_typing.py,sha256=e1f7xO2aZCy38M_3VoDy-XI3shyd99-IFctgIFSgXWM,497
|
|
14
|
-
sqlmesh/core/console.py,sha256=mgUrgbwjuR0HEZsXkPBtfpjeKzmFjgWVqJOcROyI74E,168778
|
|
15
|
-
sqlmesh/core/constants.py,sha256=y92qUS6s5upGr1Kvbf9KXJticNmehBxSM1kzbwSXFAE,2664
|
|
16
|
-
sqlmesh/core/context.py,sha256=uo1YD5jhliHkz05FKUNK9-FSrxLwrpB8SowBycLpdgc,129156
|
|
17
|
-
sqlmesh/core/context_diff.py,sha256=mxkJu0IthFMOlaQ_kcq5C09mlgkq2RQb-pG2rd-x_nA,21648
|
|
18
|
-
sqlmesh/core/dialect.py,sha256=s5r3oy43C1eUa3v3pXgQN4xChczRVpjZvANAl3WHGlE,52922
|
|
19
|
-
sqlmesh/core/environment.py,sha256=odus40R-YzdQdS_IiUq_tFouUXIhnpwmNwo8dE8Aw1k,13041
|
|
20
|
-
sqlmesh/core/lineage.py,sha256=zjB0Zfamo2Fja2r5SSZPMbrEKTXr1WjozZPVqvxdybI,3143
|
|
21
|
-
sqlmesh/core/loader.py,sha256=2u91WKnXWHbAmyo9mluXHhSNwhe4r35QHv031S4OXjU,37291
|
|
22
|
-
sqlmesh/core/macros.py,sha256=VCNj5n9PNtakD5gP1wC9bFyYUP0MzL99kDGLZUfwP-w,62316
|
|
23
|
-
sqlmesh/core/node.py,sha256=WNP_bJILm5DEwSShbIioy99KsirTDAcUxjhYA2phlHc,15585
|
|
24
|
-
sqlmesh/core/notification_target.py,sha256=PPGoDrgbRKxr27vJEu03XqNTQLYTw0ZF_b0yAapxGeI,16158
|
|
25
|
-
sqlmesh/core/reference.py,sha256=k7OSkLqTjPR8WJjNeFj0xAJ297nZUMgb_iTVwKRRKjc,4875
|
|
26
|
-
sqlmesh/core/renderer.py,sha256=Mnb_5cBAxfRD1hUR0_Bslz8AiAYUlgsxDhfvrL1ERsc,26767
|
|
27
|
-
sqlmesh/core/scheduler.py,sha256=Z7t-BIZRn2VpdtBJZ6e6ctmOQshZIYc8kmdnZEA4X8Q,47199
|
|
28
|
-
sqlmesh/core/schema_diff.py,sha256=qM4uxOBtrAqx8_5JU0ERicMT-byLD4xUUv4FrQw92js,33934
|
|
29
|
-
sqlmesh/core/schema_loader.py,sha256=_Pq2RSw91uthqv1vNi_eHmLlzhtGz_APMJ0wAJZYuvk,3677
|
|
30
|
-
sqlmesh/core/selector.py,sha256=9bqtBx7Onl8zZb-G4OsGVYVwkdm24j_qnp5HgXLFhR4,12837
|
|
31
|
-
sqlmesh/core/signal.py,sha256=yVLXewYP6eH0vt-EwaIaI2WwHz6hWsVr-Kb2m4kP1FU,1353
|
|
32
|
-
sqlmesh/core/table_diff.py,sha256=cKb2e2SI46jyRB1Z3DVWV6ZqRhICM7ekE0nRtZmoywE,28873
|
|
33
|
-
sqlmesh/core/user.py,sha256=EJ6R4R1iK67n80vBoCCsidF56IR7xEYqiCEO-nrVMso,1660
|
|
34
|
-
sqlmesh/core/analytics/__init__.py,sha256=ou3ZXAJfQOXEifj-PzaXwMDSvJzsVaqaMkUopiI00kM,3247
|
|
35
|
-
sqlmesh/core/analytics/collector.py,sha256=sggJvER16Jrg5triTC27E2KwaQvfkVDv4D6R1lVPH5I,13058
|
|
36
|
-
sqlmesh/core/analytics/dispatcher.py,sha256=SQw5tHIETb7ei_oCj7ktHEJyeJNbKyIYiOPxQXyQuIg,6259
|
|
37
|
-
sqlmesh/core/audit/__init__.py,sha256=3jogKe-G4X0rOxwH5QVuRRioyesQffSWxKU4PVwMPvA,216
|
|
38
|
-
sqlmesh/core/audit/builtin.py,sha256=adA-cFCphB66jVY4n66cbwbRTFF1FTEIMrLhRDpbBo0,17783
|
|
39
|
-
sqlmesh/core/audit/definition.py,sha256=JJwyQD7iUskGI4c8wsSIWrkq8FjWxklJHg06PEZQA4g,18977
|
|
40
|
-
sqlmesh/core/config/__init__.py,sha256=b7oIU9VA0oJD2FxrHkXrcLdzELeObSveT9f22QBGd0Q,2124
|
|
41
|
-
sqlmesh/core/config/base.py,sha256=t8NQmsgQoZSc-k0dlDiCb8t1jj0AMYdGZ-6se9q_Pks,4898
|
|
42
|
-
sqlmesh/core/config/categorizer.py,sha256=6vzUoNLjR6GOEb_2mYVz2TwmMv2BfldgHX2u-Le5HZs,1975
|
|
43
|
-
sqlmesh/core/config/common.py,sha256=9V6PltBAjYeWLOU5dAbqL55BSFfpg8z8t2Op1x_PLhU,6418
|
|
44
|
-
sqlmesh/core/config/connection.py,sha256=WYpyRvCjDYszMFXYO9wVHdoonNrR1WfqAjmRxD0vCH4,90427
|
|
45
|
-
sqlmesh/core/config/format.py,sha256=6CXFbvnor56xbldKE-Vrm9k_ABRoY4v6vgIb3mCihiQ,1355
|
|
46
|
-
sqlmesh/core/config/gateway.py,sha256=tYngyqwd_4Qr9lhcv2hlvLvb_2pgYYtKu6hdGsTr-4I,1931
|
|
47
|
-
sqlmesh/core/config/janitor.py,sha256=NP0i51V8XwMrHw8uuwQknivuudIleNiFBtBnMuXmfIY,362
|
|
48
|
-
sqlmesh/core/config/linter.py,sha256=4Fh6UgY5FrRD9tk_R41Y-M_r91Wh7EQW3Pc1IdRN9Cg,1287
|
|
49
|
-
sqlmesh/core/config/loader.py,sha256=n8VlT4GQafTo4rhI6zB6YyB8UisHUqOv7E1NBGA8sZw,9826
|
|
50
|
-
sqlmesh/core/config/migration.py,sha256=3lZIlmIcQH3_hIEm3Y3jFtvpw0YXzRzAnk4OdiklO6M,408
|
|
51
|
-
sqlmesh/core/config/model.py,sha256=PsMYI6dHsxYk1aVa9o3SXWN7s-TBwXZsnbrka1f_VOQ,4472
|
|
52
|
-
sqlmesh/core/config/naming.py,sha256=KVGaxUgswoQajXR_cHFJvgkmEFcU1V182GkOH1SJxuE,326
|
|
53
|
-
sqlmesh/core/config/plan.py,sha256=wJEDfocMcKSMN0-5gVojjIcmJZ0376LJU3tkGMTm-Zc,1558
|
|
54
|
-
sqlmesh/core/config/root.py,sha256=BvucVFqyOMBDOmTMZmmQJfLbPMQtAGfsBfOA1rYmpFc,16872
|
|
55
|
-
sqlmesh/core/config/run.py,sha256=rIK0QnN_vArrwps2TXGVEbvao2AnGZgzXo7EliJa42E,852
|
|
56
|
-
sqlmesh/core/config/scheduler.py,sha256=LVEHIln7dqv8ygo4uniji4j9-gfuJlk-WpQU9FAqILs,7031
|
|
57
|
-
sqlmesh/core/config/ui.py,sha256=jsO-S6_d9NkLZGG5pT4mgKgxMF34KzkDociZAMvCX3U,278
|
|
58
|
-
sqlmesh/core/engine_adapter/__init__.py,sha256=y9jZAFdMBkkkRrf0ymfsJJn6s_7Ya6OpDgR4Bf1OG_U,2383
|
|
59
|
-
sqlmesh/core/engine_adapter/_typing.py,sha256=QSXXdxtTHXTwJyiv-9ArAJHvwmJPfa7tShuD_3vGwfg,1010
|
|
60
|
-
sqlmesh/core/engine_adapter/athena.py,sha256=5BhMaQcpiBkGt_tdT4Dw67t5pCOh-UN9-bQtayFRL3Q,26867
|
|
61
|
-
sqlmesh/core/engine_adapter/base.py,sha256=b27qGEV8KAk72O5EleiWitvuLdKruM7P7utFTjTAX28,116735
|
|
62
|
-
sqlmesh/core/engine_adapter/base_postgres.py,sha256=V4NwGs1IxOpRDjrDeh16A8TZdkHYfJEoJyVWW96xYQU,7061
|
|
63
|
-
sqlmesh/core/engine_adapter/bigquery.py,sha256=e66jX3T885y5ADytYVNfqH8pAPWe4_j8CJxeQXaswb8,54785
|
|
64
|
-
sqlmesh/core/engine_adapter/clickhouse.py,sha256=Lxtsz-8EoVGPEZpmGbfoU5VXQromkM-6h3QHALdAQ9k,35979
|
|
65
|
-
sqlmesh/core/engine_adapter/databricks.py,sha256=B6OkHelGrxxehZlYno5cZ8MB_bHirQS_imznSZdQGrY,14589
|
|
66
|
-
sqlmesh/core/engine_adapter/duckdb.py,sha256=9AXeRhaYXBcYSmIavyFY9LUzfgh94qkTO98v0-suQ8I,7993
|
|
67
|
-
sqlmesh/core/engine_adapter/fabric.py,sha256=aMx4rlvFCdYUI_lJbwHh7eepHvscsxGA_J57_a0w5uw,14421
|
|
68
|
-
sqlmesh/core/engine_adapter/mixins.py,sha256=_PdCpR6KM-AaCSTZZG_KmJFzR19OktEZjUxm7yFtl3U,23612
|
|
69
|
-
sqlmesh/core/engine_adapter/mssql.py,sha256=oUKTUvXUzLxqtrtDsnyOJjV6p6R6pkiVIhL2WmKMs9k,18270
|
|
70
|
-
sqlmesh/core/engine_adapter/mysql.py,sha256=cvWN0HXHxhxxIUHZ6syV8mfpNc3MjQget0SR26qVwSY,6959
|
|
71
|
-
sqlmesh/core/engine_adapter/postgres.py,sha256=prSV9trLqzmFGnquoqfmR20ZtKmAtVvfP8rX6E8ofHA,5128
|
|
72
|
-
sqlmesh/core/engine_adapter/redshift.py,sha256=a4hvAeUkABxdJ9mBQo3WvVBv3kFXnBApy2Sgl87asnQ,17643
|
|
73
|
-
sqlmesh/core/engine_adapter/risingwave.py,sha256=GY0u085TWerl8kTRNJpEutdD5FBsoPijQ0CcOkWOJEE,2359
|
|
74
|
-
sqlmesh/core/engine_adapter/shared.py,sha256=pvYU-sC2WEIOENm4oG4UrOCWXF56h-FEmlAqAR8TYoA,13500
|
|
75
|
-
sqlmesh/core/engine_adapter/snowflake.py,sha256=mg1vMwGtXB5fmO_HSm290RsYR0o8zT-QLbNKNCjuTfM,30180
|
|
76
|
-
sqlmesh/core/engine_adapter/spark.py,sha256=OL2UpXxIxUIEb2ij4Kkown8zeyoIG0mboRVpG5p5I9o,22913
|
|
77
|
-
sqlmesh/core/engine_adapter/trino.py,sha256=-QvhmzwFvRdWjRzUBbw3A6xXfGRuTyYF_1ojPAeB05s,18010
|
|
78
|
-
sqlmesh/core/linter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
-
sqlmesh/core/linter/definition.py,sha256=JDJTkhByUw4Tr3nF-BOHKFAx_eASQqEqzX6AUVQUz8I,5659
|
|
80
|
-
sqlmesh/core/linter/helpers.py,sha256=cwKXP4sL6azRtNVGbMfJ5_6Hqq5Xx2M2rRLCgH3Y3ag,10743
|
|
81
|
-
sqlmesh/core/linter/rule.py,sha256=nB3o1rHyN44ZOg5ImICP16SeUHimf-12ObdXJjkTGyM,3964
|
|
82
|
-
sqlmesh/core/linter/rules/__init__.py,sha256=gevzfb67vFqckTCoVAe_TBGf6hQ-YtE1_YuGuXyh1L0,77
|
|
83
|
-
sqlmesh/core/linter/rules/builtin.py,sha256=BVBoBr1Ru-DA4VPnwfaodZdVq84afCc9qBgPLmwrfiA,10204
|
|
84
|
-
sqlmesh/core/metric/__init__.py,sha256=H1HmoD5IwN4YWe9iJXyueLYNmTQFZwok5nSWNJcZIBQ,237
|
|
85
|
-
sqlmesh/core/metric/definition.py,sha256=Yd5aVgsZCDPJ43aGP7WqtzZOuuSUtB8uJGVA6Jw9x9M,7201
|
|
86
|
-
sqlmesh/core/metric/rewriter.py,sha256=GiSTHfn2kinqCfNPYgZPRk93JFLzVaaejHtHDQ0yXZI,7326
|
|
87
|
-
sqlmesh/core/model/__init__.py,sha256=C8GRZ53xuXEA9hQv3BQS9pNNyd9rZ06R_B96UYGhDu4,1644
|
|
88
|
-
sqlmesh/core/model/cache.py,sha256=csun0RJguHzKX6-qITcOs4fVP4f8_Ts8qiUVV4sHY6Q,7869
|
|
89
|
-
sqlmesh/core/model/common.py,sha256=5SMyrkBE6Kk8nwNdDa6YV79r3psrhFCpmqE59vpDwkI,27685
|
|
90
|
-
sqlmesh/core/model/decorator.py,sha256=bL-JuNrdBAikZSjVxnXqeB9i0e9qC7jm7yLjwiZ38aU,9470
|
|
91
|
-
sqlmesh/core/model/definition.py,sha256=Y7AjZdlpPWdRuhqBBqVbuwH0G-JzGgAFNp6NNbvrMgM,114916
|
|
92
|
-
sqlmesh/core/model/kind.py,sha256=kR4NwiBxzftznkqkGIK0AAZYAhxukZueNqDM7Eh0yCQ,37774
|
|
93
|
-
sqlmesh/core/model/meta.py,sha256=t6NFwQBJ8eMKsBqgdqnZ5952NdM3XrC6Vgi4l6jj8e0,20455
|
|
94
|
-
sqlmesh/core/model/schema.py,sha256=_HMYfzK9wWXh7_CQDIIGnuQUD4aiX3o5D2cRp2sERzc,3387
|
|
95
|
-
sqlmesh/core/model/seed.py,sha256=a0M-1zY1gOkN5ph2GQyataEdBSCtq50YjeFk2LyvInI,5058
|
|
96
|
-
sqlmesh/core/plan/__init__.py,sha256=NKSvM7ZBVjw9ho3J65M1wFvG3KURB8PJ0FHHLmtSF44,443
|
|
97
|
-
sqlmesh/core/plan/builder.py,sha256=Czcf7thtj4_SDpsOKHn8z-MzolMVDKlBf9ypm0zdXIQ,43399
|
|
98
|
-
sqlmesh/core/plan/common.py,sha256=IOq3tbHWzSS7Ar0KZimqKMzQHkyGV5vw39MLaLcty4Q,1073
|
|
99
|
-
sqlmesh/core/plan/definition.py,sha256=NWosaN3wYPwgQU0wLxv___Gx-obvnAdmYzkQN7RGKyU,14305
|
|
100
|
-
sqlmesh/core/plan/evaluator.py,sha256=QvDk2NAuWSGEffOGCPAdp3kN6-mNGR-_GpWTJJEx7wk,22601
|
|
101
|
-
sqlmesh/core/plan/explainer.py,sha256=aBkvtM9eog_2NIglazSDdG_i9TTCdFSVOkCw5N8O-1k,12028
|
|
102
|
-
sqlmesh/core/plan/stages.py,sha256=DyzvGnExRYeCg25fe7CGyg73L_3bWlDWPY6DCHQKcF8,25581
|
|
103
|
-
sqlmesh/core/snapshot/__init__.py,sha256=LU-0TGyLTpz6SIPEJr4s0Zvu1d6vuN2YH7m3mR70080,1357
|
|
104
|
-
sqlmesh/core/snapshot/cache.py,sha256=bgqCR2hyf6r2A_8QP1EnXFK25gDX37-Zg0YeMuETWxg,3934
|
|
105
|
-
sqlmesh/core/snapshot/categorizer.py,sha256=iNBEqK2KIyTAYURlB9KLfyKCpXN7vjxSqA7QjFa7e5c,2418
|
|
106
|
-
sqlmesh/core/snapshot/definition.py,sha256=XRM3bkmG-ycaWRLquTi-hsu-CSGfGV7OjFDymL198vU,92533
|
|
107
|
-
sqlmesh/core/snapshot/evaluator.py,sha256=PeTgpmu3AKCH1Dxbxw3vc_rjZpHFjNZuKW3ahRKovjk,110861
|
|
108
|
-
sqlmesh/core/snapshot/execution_tracker.py,sha256=Ss1oYgH28Fy1mQ4HriX-luE9MG0eLdecrE1SssUveQI,3651
|
|
109
|
-
sqlmesh/core/state_sync/__init__.py,sha256=B60xj-_Xk-4jas3UphLvwkuf04G-9AyGckcblXE0aRg,869
|
|
110
|
-
sqlmesh/core/state_sync/base.py,sha256=AdqWmbhnvRFqVcFK6L01uCvpBVAYGuMrm4P0D3u_NaU,18334
|
|
111
|
-
sqlmesh/core/state_sync/cache.py,sha256=0AsYdQyBqbLdJvkBQ-hDAipsvnn_jSps-nya-Q4XeL0,5337
|
|
112
|
-
sqlmesh/core/state_sync/common.py,sha256=scuisdmaO3iliuUNFZi16CLDwiSKpW_zkMA0_MCNGLk,7902
|
|
113
|
-
sqlmesh/core/state_sync/export_import.py,sha256=WJ7sFX2b_RPAFE4yspJRi_4JQnaO23xpJgRxwXD0agA,8709
|
|
114
|
-
sqlmesh/core/state_sync/db/__init__.py,sha256=jGCqKYB7npq4eh6H2LyfBAJWdOP-IFu0DC4CMiQgYvw,107
|
|
115
|
-
sqlmesh/core/state_sync/db/environment.py,sha256=Pn7T79JH0WxdWApci75sjfhNPJ0slHF4TkvqsLcCKQo,13773
|
|
116
|
-
sqlmesh/core/state_sync/db/facade.py,sha256=7OMZt_T3TvavxeC95uwBWe7uD_PtgRyf-s7oYrTkVPg,25245
|
|
117
|
-
sqlmesh/core/state_sync/db/interval.py,sha256=gPHDuFU4VJIAP7HfZjZ4_gZo5E3az8Jch43gNO3lh4M,18083
|
|
118
|
-
sqlmesh/core/state_sync/db/migrator.py,sha256=rRwWTETCJ9Mfua-W3fdV_TOqUp1q1Y7i80Oqrd3rO58,18192
|
|
119
|
-
sqlmesh/core/state_sync/db/snapshot.py,sha256=zK-FFADihpK1xgUWcEmC2gabAHQryD5EDOCzy3J_5TY,28300
|
|
120
|
-
sqlmesh/core/state_sync/db/utils.py,sha256=8KjRmOjP5CLuSRkYBUE2k34V-UYB0iSyuO0rWBQ_5pY,4218
|
|
121
|
-
sqlmesh/core/state_sync/db/version.py,sha256=q5VDIIvY-585vTbvqPalU0N4qjG6RKs4gr8a51R-_UE,2257
|
|
122
|
-
sqlmesh/core/test/__init__.py,sha256=e83TJPwPRR_rAG29Y0OVbZb-5oWVBzz-_wrcd22Qk10,418
|
|
123
|
-
sqlmesh/core/test/context.py,sha256=9mmskKXpzsIkW_I31uN1n3Ioj8ngvyGAqyL_AZvVHpc,2253
|
|
124
|
-
sqlmesh/core/test/definition.py,sha256=9DiHsGQ3Cw50JJ0su_Fq-6BdwXxFAavBON8s4ZamVrs,41929
|
|
125
|
-
sqlmesh/core/test/discovery.py,sha256=WXIwPidLoacAGHoT_3TVFFEKamG89nHNtaMsZ01uGjs,1188
|
|
126
|
-
sqlmesh/core/test/result.py,sha256=6gOKEsERciHhcrw9TedtNr7g1ynTO7UwA5-PPrzvYuM,4564
|
|
127
|
-
sqlmesh/core/test/runner.py,sha256=8I-cL7Q9CggLvET_GPkrXB2YjlyCIHrvbFbbRDnSHRE,6169
|
|
128
|
-
sqlmesh/dbt/__init__.py,sha256=KUv-lW5sG9D2ceXAIzA4MLcjyhzq3E-7qJP4P_PH2EU,144
|
|
129
|
-
sqlmesh/dbt/adapter.py,sha256=yZD022PrSomxZXA72BAPdI-VuuKFMIJF6FALeA3oJbg,21090
|
|
130
|
-
sqlmesh/dbt/basemodel.py,sha256=GQVsZw2ZrOUScXUzPU4LyjsgHqMcPYqhAjSDG6oi8IY,14181
|
|
131
|
-
sqlmesh/dbt/builtin.py,sha256=nIcJW1b3hL0_wGfZiY95pf0o9BGWf2IGoRC3N4BpbcI,16029
|
|
132
|
-
sqlmesh/dbt/column.py,sha256=Kvj_N3D_QegcoNQG7VqRiqy-FRfupud-6ilhlykBOgE,1873
|
|
133
|
-
sqlmesh/dbt/common.py,sha256=1xu0I-lwu6tAdZHe1XTeqGcj7PUu8qW0NeNeIvc4SVQ,8188
|
|
134
|
-
sqlmesh/dbt/context.py,sha256=jsHh2WVSoBFOIJwFkA49FiIqLwNEmDw1rb4XcoUMmYQ,10590
|
|
135
|
-
sqlmesh/dbt/loader.py,sha256=KpAJd7Kb-4Dh6Omi3czbygZLDDV8LnvP5kmqdQLdTE0,16345
|
|
136
|
-
sqlmesh/dbt/manifest.py,sha256=cYoff5R6CK-opTu6AT0MJsFH0T2uavyXx3MofdaYg94,28296
|
|
137
|
-
sqlmesh/dbt/model.py,sha256=z15wNCtUpETmsQDUOzW8GpN5wPAgUWMLUGVRrkQgfCk,30897
|
|
138
|
-
sqlmesh/dbt/package.py,sha256=IBBQueVB4_4C9tIk0-GUL-O2uibNxXu6W2a4AeHHcOU,4322
|
|
139
|
-
sqlmesh/dbt/profile.py,sha256=hAqL8lfT98pSBY-wCInPg2WhFEjCNUGF2bx5UcWFx-4,3939
|
|
140
|
-
sqlmesh/dbt/project.py,sha256=w-QABfp2BYnUaqvYLrfBCsCUU524V7AFjkIrWecODVs,4284
|
|
141
|
-
sqlmesh/dbt/relation.py,sha256=8QhnW_mQ6bjhKNZwTI1p9SLdMBCcAxvHfo0Qs97Mw6w,228
|
|
142
|
-
sqlmesh/dbt/seed.py,sha256=Uwvkhh1rK5G7cocPjt0cqODPtYmohl0HOciluw-41Jg,4379
|
|
143
|
-
sqlmesh/dbt/source.py,sha256=IZK-aOV-KdWIOPuXqRjJZAZ7phW1HUXoHtE-3clgkx4,4125
|
|
144
|
-
sqlmesh/dbt/target.py,sha256=nE5PRq2ERvTz2bsBsG0_8S8TYnzPzc2bSHmwRsQcYfY,41892
|
|
145
|
-
sqlmesh/dbt/test.py,sha256=P7GOQGYjIw7BKWM2HjIPtH5zGT1qC3ZHi3_8rGwB3o4,8282
|
|
146
|
-
sqlmesh/dbt/util.py,sha256=M-f5fJcdRMCkYnPR-UqnD-KciLe4uSw0U5OxzU8Lg28,906
|
|
147
|
-
sqlmesh/engines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
|
-
sqlmesh/engines/spark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
|
-
sqlmesh/engines/spark/db_api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
|
-
sqlmesh/engines/spark/db_api/errors.py,sha256=LSXuHHhkzHvKlcdwmhCM9qm51KyKoP8gQH-p_W3Oow4,148
|
|
151
|
-
sqlmesh/engines/spark/db_api/spark_session.py,sha256=uQP0VFFYtp3N9mK7zKw6SoiGVhJDDYPylqx46yDwGEc,4667
|
|
152
|
-
sqlmesh/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
-
sqlmesh/integrations/dlt.py,sha256=mA9ym16gAN2O8RYOzSPeTX5xsXPuXVRPdiX7dkGGZlo,7744
|
|
154
|
-
sqlmesh/integrations/llm.py,sha256=URgp3JKr06HYv6hGlJ7DQ9m3QCc41xRWK23HzmGpbDI,1662
|
|
155
|
-
sqlmesh/integrations/slack.py,sha256=nxLxu5WztGbZH3JdqnzyPqmJUMfRdJ_49LQ7zR-u39Q,6801
|
|
156
|
-
sqlmesh/integrations/github/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
-
sqlmesh/integrations/github/cicd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
|
-
sqlmesh/integrations/github/cicd/command.py,sha256=w3oWhvR4utEurB5UABXj4iVBIojkCnZ0wTazIFmVmnc,12246
|
|
159
|
-
sqlmesh/integrations/github/cicd/config.py,sha256=n4KyNv65y1gpys82iLAQZUb6g2pnzywyV_7cOrQXsnI,3669
|
|
160
|
-
sqlmesh/integrations/github/cicd/controller.py,sha256=0I5mHPz3HBJR5lkR-2J9Bj06Yn-Q5_a8Z1tg2pcqOWc,54927
|
|
161
|
-
sqlmesh/lsp/api.py,sha256=Z_8Op6CWqdbmEeidCQgMcVmRooQujqaynn-0EOw4478,2505
|
|
162
|
-
sqlmesh/lsp/commands.py,sha256=7tZPePSH-IwBYmXJPIlqGM7pi4rOCLEtc3fKJglAxZs,72
|
|
163
|
-
sqlmesh/lsp/completions.py,sha256=7Lhboh6xyoMJ3kkHG3aZz1xVbDwKiXeQKdIRj5xlUOA,6674
|
|
164
|
-
sqlmesh/lsp/context.py,sha256=VIL_Xl3II6I79ILZ67UTY9u6OzgkLHDTEpTK91DJxAA,20892
|
|
165
|
-
sqlmesh/lsp/custom.py,sha256=npzNznpUJ3ELY_WU4n_4I73lAjuTapI0_HKCFsoMcOk,5132
|
|
166
|
-
sqlmesh/lsp/errors.py,sha256=3NMim_5J00Eypz7t8b7XbkBfy8gIsRkeq-VcjD4COtc,1489
|
|
167
|
-
sqlmesh/lsp/helpers.py,sha256=EFc1u3-b7kSv5-tNwmKUDxId72RCLDBnN2lLTgRSzzQ,1020
|
|
168
|
-
sqlmesh/lsp/hints.py,sha256=j-blccBUil94yRoDjWfkSM0HqMmsKD6hP2TaWdWWVk4,3734
|
|
169
|
-
sqlmesh/lsp/main.py,sha256=RMT2HTCismeHfAvYeOAIUlD-YlUSORBImt5mLsBDlto,52353
|
|
170
|
-
sqlmesh/lsp/reference.py,sha256=-TTT5NIIGDQoEDCzH8RNgEINt0p9DYclzEn4rBjreRI,18475
|
|
171
|
-
sqlmesh/lsp/rename.py,sha256=AFj-zJGWiBgHSj1jx1rOx4yJmmw1QpEcob648epM8gk,4668
|
|
172
|
-
sqlmesh/lsp/tests_ranges.py,sha256=YO5w534J5_y2NWxj9t637wHLbFDJdXBvM7i5F4C-P0I,2308
|
|
173
|
-
sqlmesh/lsp/uri.py,sha256=mvSLbZGmMTHPpliThOtVWiFcHnfJzp1w39q9l-xD2SI,802
|
|
174
|
-
sqlmesh/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
-
sqlmesh/migrations/v0001_init.py,sha256=h8FwMYJj9_O8yGpk12guaSaGwX5A3we2GiKeHrXi15o,2048
|
|
176
|
-
sqlmesh/migrations/v0002_remove_identify.py,sha256=ZeHuodZcQzRRZX0B0Y7SSkK3qqlDuz316kmvzojeyoU,113
|
|
177
|
-
sqlmesh/migrations/v0003_move_batch_size.py,sha256=8kCFAG6jGMuQclO9X__0rMHjKBV9WhP1xP7i2RjwX78,1284
|
|
178
|
-
sqlmesh/migrations/v0004_environmnent_add_finalized_at.py,sha256=gbMPaWVnHyF-VBy0S7cP_CZNISIu4fX-5dKR3Qa7tkc,640
|
|
179
|
-
sqlmesh/migrations/v0005_create_seed_table.py,sha256=Pg0QjFLN59RCi2Cnbul8lAzsi8lDzSLVhi8POQMtQ0g,703
|
|
180
|
-
sqlmesh/migrations/v0006_change_seed_hash.py,sha256=ONCcvlfJ5cCAKPrdpm6_twzX15Jd1Yjm9uhKfkMSkmY,129
|
|
181
|
-
sqlmesh/migrations/v0007_env_table_info_to_kind.py,sha256=NQ2eAulvgeKga6UZuNdCHfim00CA-X3ESOjltwlY4ls,3212
|
|
182
|
-
sqlmesh/migrations/v0008_create_intervals_table.py,sha256=6mjwQTf4KrLXhMVkfeDzfM6crV2XHWaRkunz_unwOus,1334
|
|
183
|
-
sqlmesh/migrations/v0009_remove_pre_post_hooks.py,sha256=Ums7h9qDKBKYDyvzowLTBOdLRDuPX1qZsxUCNKcvtV0,2051
|
|
184
|
-
sqlmesh/migrations/v0010_seed_hash_batch_size.py,sha256=JJZdZPSdFbCDSAnATOBqZWW9LMcOZwvl8gWqtjephpc,127
|
|
185
|
-
sqlmesh/migrations/v0011_add_model_kind_name.py,sha256=3Pk6oqPsf7r-6Pn-PUtCuKkQS8CA7EgFUBnzeWMH0-U,1893
|
|
186
|
-
sqlmesh/migrations/v0012_update_jinja_expressions.py,sha256=3ooX13ml_lGEGZlXRb6sgZoshfao4UjTH_faLhzObmo,2632
|
|
187
|
-
sqlmesh/migrations/v0013_serde_using_model_dialects.py,sha256=pckJtxdpbHYJJCw7L095Y0b8B_KJDUk5WcICjJBVCvg,2852
|
|
188
|
-
sqlmesh/migrations/v0014_fix_dev_intervals.py,sha256=U1k0nNpa77PMBw_NPfwAh3Pg63HvWqfoXwz48g3QF3Y,385
|
|
189
|
-
sqlmesh/migrations/v0015_environment_add_promoted_snapshot_ids.py,sha256=OHAb_h2tn48HDt4grRvC19UqLCXiAlXpePhvYm6TQLM,769
|
|
190
|
-
sqlmesh/migrations/v0016_fix_windows_path.py,sha256=JrXXytgxbRd2CkiBBSRKSzLG-o0qSExmCaQgZzhIX6I,1897
|
|
191
|
-
sqlmesh/migrations/v0017_fix_windows_seed_path.py,sha256=tExgP6jeNO4OEqnJKX7QlmmgCfjydOW7lJrz-hsjVDg,1755
|
|
192
|
-
sqlmesh/migrations/v0018_rename_snapshot_model_to_node.py,sha256=AkwM0YRXYkrjx-5SWId05_rquy8jw6-9YbwHkwm7nmQ,1642
|
|
193
|
-
sqlmesh/migrations/v0019_add_env_suffix_target.py,sha256=2WOeqP1Rm4I_1gawYLZuVl516CMgJiPwUUOzFIDxoyU,776
|
|
194
|
-
sqlmesh/migrations/v0020_remove_redundant_attributes_from_dbt_models.py,sha256=NX37g63z7HqxSZml01hifMDxmBHQ-sxJ0YSlxIznEzA,2273
|
|
195
|
-
sqlmesh/migrations/v0021_fix_table_properties.py,sha256=c8Q-A8Y8lAK-h1nvaSwPCIFlrRKreT2bPE7dC6_0stE,2136
|
|
196
|
-
sqlmesh/migrations/v0022_move_project_to_model.py,sha256=NZ8TTEUOZ_5JMliCjY4CQPJhq0QbuuWPA4Utb_rvwm0,1654
|
|
197
|
-
sqlmesh/migrations/v0023_fix_added_models_with_forward_only_parents.py,sha256=TuC2l3bf212BuHRaJjaKilOZdA9rn65f4LPIFO6MRFQ,2424
|
|
198
|
-
sqlmesh/migrations/v0024_replace_model_kind_name_enum_with_value.py,sha256=cY_jtcHU5lKm_Pdlwc4nQ9XwYu1fuB_E8YnCmQJd82w,1739
|
|
199
|
-
sqlmesh/migrations/v0025_fix_intervals_and_missing_change_category.py,sha256=ebmr8ibOf1cGrbHtq4hHuMFh3YQ0g_xou8mZ7YK9k7k,4172
|
|
200
|
-
sqlmesh/migrations/v0026_remove_dialect_from_seed.py,sha256=GtyCc6NtHjjM4iYgfL1XYUkbHfRqlWAWDw72MQhNXSk,1678
|
|
201
|
-
sqlmesh/migrations/v0027_minute_interval_to_five.py,sha256=705gkBWojsg489J3j6rR2bjjnm8e9P3pXjd92VIc3Vw,1731
|
|
202
|
-
sqlmesh/migrations/v0028_add_plan_dags_table.py,sha256=gGjSardt2XSgxYP5VoWOzUJL7crU4kKKwuLjXk6g07o,846
|
|
203
|
-
sqlmesh/migrations/v0029_generate_schema_types_using_dialect.py,sha256=MtM5WXTEfav4k0KYQ8YeSho29Ysa_8evAx5yLB2Ke78,2141
|
|
204
|
-
sqlmesh/migrations/v0030_update_unrestorable_snapshots.py,sha256=Wf5rcc5pbAfB1YI6VXRFWs_7KGU5XoaprMhT7MunSYQ,2243
|
|
205
|
-
sqlmesh/migrations/v0031_remove_dbt_target_fields.py,sha256=ppE-3CiYcLMG84jheTfL9ZaBcZf3ko1SqS9HaG634Pc,2451
|
|
206
|
-
sqlmesh/migrations/v0032_add_sqlmesh_version.py,sha256=4jojN6X06HyDJyMqjHK1xAXqppnRHj7lnZj-_dkapmE,753
|
|
207
|
-
sqlmesh/migrations/v0033_mysql_fix_blob_text_type.py,sha256=5HpwRRHlma9MMZOoQgBZNeFZIBCDOO5zaB5PJt86aOI,1348
|
|
208
|
-
sqlmesh/migrations/v0034_add_default_catalog.py,sha256=HFfZer-32eLy1SixnmeaepdAoGsbJwUSSc_MlHMeHpQ,13503
|
|
209
|
-
sqlmesh/migrations/v0035_add_catalog_name_override.py,sha256=pLVqow57ZII3E5JyQf5PPmuB6G_n0EENi1ZHemP-kLc,655
|
|
210
|
-
sqlmesh/migrations/v0036_delete_plan_dags_bug_fix.py,sha256=heRoCaYQ4ZjuuB2K15k3VCCNeSD8aGoCpSEUiuvw3Qs,566
|
|
211
|
-
sqlmesh/migrations/v0037_remove_dbt_is_incremental_macro.py,sha256=__ZUjd5oxgT6xBcDvZDHKelV-uPZ9YX5gO7QxHTUdRY,2009
|
|
212
|
-
sqlmesh/migrations/v0038_add_expiration_ts_to_snapshot.py,sha256=r_qPfoo7TTDH_ivAcAUJeG8PP1lewfgPn9YhU5O31eg,2340
|
|
213
|
-
sqlmesh/migrations/v0039_include_environment_in_plan_dag_spec.py,sha256=Y-piKyudjlsB3eNQG1HSwiZSKso3UWrKfEgDhZOW_tM,2223
|
|
214
|
-
sqlmesh/migrations/v0040_add_previous_finalized_snapshots.py,sha256=kJxTrSUIQYP-ZRlWM1TNM6oUELaw85U5VVYgFMw64dQ,780
|
|
215
|
-
sqlmesh/migrations/v0041_remove_hash_raw_query_attribute.py,sha256=A_v-5pkn6Jb5RDdhpZKf_7-ve73OvsTim5SIEQBSwOE,1924
|
|
216
|
-
sqlmesh/migrations/v0042_trim_indirect_versions.py,sha256=OssA1LkACcfcszau9vqoRuy41iy4vWJ5-NNlhs6c7do,2357
|
|
217
|
-
sqlmesh/migrations/v0043_fix_remove_obsolete_attributes_in_plan_dags.py,sha256=CcBOb5TOrFbxUte8orzuMyXldip57jHcKquBr6TUCTg,2121
|
|
218
|
-
sqlmesh/migrations/v0044_quote_identifiers_in_model_attributes.py,sha256=EkCyGR-QGzHnn_8WL9-aOPjPFJ1tqIEJv3YvaYr9v5A,112
|
|
219
|
-
sqlmesh/migrations/v0045_move_gateway_variable.py,sha256=cMRZXHHybd_YYUjtdJA_MRdtQuYJEVBZw1X97X9dec8,2360
|
|
220
|
-
sqlmesh/migrations/v0046_add_batch_concurrency.py,sha256=2pUv9MXIKGhGiFe09Qnv8eyNgxFaF5k5mgqiP2qku0E,185
|
|
221
|
-
sqlmesh/migrations/v0047_change_scd_string_to_column.py,sha256=aLKOl0CYonFRYaFQd-6m3phlPAx6bfx3q9sVnKvcpgs,124
|
|
222
|
-
sqlmesh/migrations/v0048_drop_indirect_versions.py,sha256=514K3A7WsAkp1eHXXqXQ93P67BGRcEoJcwbzfCRVsrY,1923
|
|
223
|
-
sqlmesh/migrations/v0049_replace_identifier_with_version_in_seeds_table.py,sha256=Xgvi--4fV_ugIm7vD7kA00Z_VRdo69en8qes8BN1vaA,1948
|
|
224
|
-
sqlmesh/migrations/v0050_drop_seeds_table.py,sha256=WURRZdw7EgdMpV2TMkGlESU6hoPShp0ioQUilaKnkvA,285
|
|
225
|
-
sqlmesh/migrations/v0051_rename_column_descriptions.py,sha256=rziEBU6tGtgk88aFVUlN08qb3q7U290ht2VtAA2HbHs,2197
|
|
226
|
-
sqlmesh/migrations/v0052_add_normalize_name_in_environment_naming_info.py,sha256=5VnbMPQh1vP5BXgP_5Z24keKZDswAiSuYGu2TLDhvTQ,809
|
|
227
|
-
sqlmesh/migrations/v0053_custom_model_kind_extra_attributes.py,sha256=eSdgFA55cKkIHrU_1iM36f1GYvapeSbPl7Ti0WPjSf0,148
|
|
228
|
-
sqlmesh/migrations/v0054_fix_trailing_comments.py,sha256=jsGpbvPtvEv3DVfiZXCm3nTneRF31pQ6HbZ49BBx6Bc,128
|
|
229
|
-
sqlmesh/migrations/v0055_add_updated_ts_unpaused_ts_ttl_ms_unrestorable_to_snapshot.py,sha256=t5GwiLOAS_Mw-SMv9rEg_nr8n7Zjkr4abD04bxYDep0,4645
|
|
230
|
-
sqlmesh/migrations/v0056_restore_table_indexes.py,sha256=Ip90DWegERyuPrS1RvxqgfnuidA8iYbrculGFMsLAmk,4741
|
|
231
|
-
sqlmesh/migrations/v0057_add_table_format.py,sha256=bQ-fsyRB8glipAJJDHzrzK_Kk0uQmpLZSLAO7fH5Zb4,119
|
|
232
|
-
sqlmesh/migrations/v0058_add_requirements.py,sha256=Zot4V5XN8xkniKRvkh57tdDBX3q8mXhVmeZZoSfX0aE,745
|
|
233
|
-
sqlmesh/migrations/v0059_add_physical_version.py,sha256=ZTR5hLF-N38Ernr_J_zYwdg5NAc7lSAEbsEzolauxvs,110
|
|
234
|
-
sqlmesh/migrations/v0060_move_audits_to_model.py,sha256=ko0YdQ8g31qMwCVdboGW03tAlQkqgbYfMevUqWxLa2s,2547
|
|
235
|
-
sqlmesh/migrations/v0061_mysql_fix_blob_text_type.py,sha256=c0TWc5HxJu2tueov61GKEFo6QIo0f6AREJE9EjzFN10,1499
|
|
236
|
-
sqlmesh/migrations/v0062_add_model_gateway.py,sha256=sOQH6ZtQWzcS1UGIs9Tu0a9vanr1q7I3971-NihgWac,101
|
|
237
|
-
sqlmesh/migrations/v0063_change_signals.py,sha256=eL5bmnR4xAgE_qy8sQp6yJv2q9Y5Vq_XUWv8VHQzgxM,2960
|
|
238
|
-
sqlmesh/migrations/v0064_join_when_matched_strings.py,sha256=6sVaah8ReasuHOP6V7Td93GQ4xZgcejaKy6AteXq7v4,2594
|
|
239
|
-
sqlmesh/migrations/v0065_add_model_optimize.py,sha256=XMiuTdgEMHFFYfcFQZ2PaxlbZF9xoQzWCu0wm1cx5Cs,108
|
|
240
|
-
sqlmesh/migrations/v0066_add_auto_restatements.py,sha256=ChTQCV-sscfk-FYCh1UoQsKaItfeUn9vGSEYTqXD_4Q,1358
|
|
241
|
-
sqlmesh/migrations/v0067_add_tsql_date_full_precision.py,sha256=l6Yl_GM2oYeSl3KL_mU_q-K4xge2tcdJP53Abrmc6nU,120
|
|
242
|
-
sqlmesh/migrations/v0068_include_unrendered_query_in_metadata_hash.py,sha256=X7iR4KDv8U3PgSy4F7zjAbuylJcb3TOCG6GTWfsBEeo,119
|
|
243
|
-
sqlmesh/migrations/v0069_update_dev_table_suffix.py,sha256=2WYy0pQZeEXOH_2WbKZGoCoSHuxoRThCZ9Idd_CGYgo,5715
|
|
244
|
-
sqlmesh/migrations/v0070_include_grains_in_metadata_hash.py,sha256=jfydWI5WpUuRBHMBakXXnSVPQydBXUdyyEm4ERXpgKM,105
|
|
245
|
-
sqlmesh/migrations/v0071_add_dev_version_to_intervals.py,sha256=uj7tn6JkbU7wjJXkahxm_tphb-0ih6_s-PswiYTrOWA,8249
|
|
246
|
-
sqlmesh/migrations/v0072_add_environment_statements.py,sha256=jgE-rS8nyIgXyFrrHUSnWgbNBsw3IVw0iRLAG15mNcg,873
|
|
247
|
-
sqlmesh/migrations/v0073_remove_symbolic_disable_restatement.py,sha256=WhhwgiT_I4AeyqtfqdHVolOyEyyQq4g7ChFICUzXHGw,2314
|
|
248
|
-
sqlmesh/migrations/v0074_add_partition_by_time_column_property.py,sha256=z_P-5xNCP6TgreWeLpBD8h592KxphOpcGqwNr8NOP5o,196
|
|
249
|
-
sqlmesh/migrations/v0075_remove_validate_query.py,sha256=8BNZ367KMRi0J_hvN3gLr_I3kZsd47AyznXEoMYh47c,2463
|
|
250
|
-
sqlmesh/migrations/v0076_add_cron_tz.py,sha256=jytcJujOgn1MzSjam-MFlv4YhkTTJ-RiYVLRRCjJT90,111
|
|
251
|
-
sqlmesh/migrations/v0077_fix_column_type_hash_calculation.py,sha256=fadQNbP4xvCH8zQlgrRPceLSO-Q-WblX7tHS5OlgITI,140
|
|
252
|
-
sqlmesh/migrations/v0078_warn_if_non_migratable_python_env.py,sha256=U9N0Z3uW1QoWkJlYVOPiEgdhUIzr-MUgeOJ7D3iBAMM,5198
|
|
253
|
-
sqlmesh/migrations/v0079_add_gateway_managed_property.py,sha256=k9RHZzPIbuckyHdvfeDrF1ZdrAoFVUVbLdfAMGZNCCE,879
|
|
254
|
-
sqlmesh/migrations/v0080_add_batch_size_to_scd_type_2_models.py,sha256=JvZ0xGEtdDOTAQLcZGq5VW55XAyHlzCR0RP6J-8pfbc,170
|
|
255
|
-
sqlmesh/migrations/v0081_update_partitioned_by.py,sha256=BRMLi0Ljq0cxmspkivulvG1kS4xgIJh2LVC5iQWFK60,2903
|
|
256
|
-
sqlmesh/migrations/v0082_warn_if_incorrectly_duplicated_statements.py,sha256=K-Z0ghTCFSZuAYzNSUXF4L8axihPemM15EOXHcqkK3s,2489
|
|
257
|
-
sqlmesh/migrations/v0083_use_sql_for_scd_time_data_type_data_hash.py,sha256=0r-SlncPec4TBpnQTeblPsiIjIOVKc10GjBVbFPGcFA,148
|
|
258
|
-
sqlmesh/migrations/v0084_normalize_quote_when_matched_and_merge_filter.py,sha256=w1TbhvB98czuq5VZxsfcQE2w7o-nd96aKEIG-M1dn6A,329
|
|
259
|
-
sqlmesh/migrations/v0085_deterministic_repr.py,sha256=RaUslNSyWIVYgLS7iUHOD7vLA5DMTxmHj-ohYL4eMeM,4272
|
|
260
|
-
sqlmesh/migrations/v0086_check_deterministic_bug.py,sha256=WiYcmhQD434GXWiiakQtcy9ESmB35spXMltV43nvU7Q,2953
|
|
261
|
-
sqlmesh/migrations/v0087_normalize_blueprint_variables.py,sha256=bbEUIuoAO8I6xptZ6eOgYdNFzwm4RUQbqvy8mR6S-vM,4428
|
|
262
|
-
sqlmesh/migrations/v0088_warn_about_variable_python_env_diffs.py,sha256=zCLT6Yqwny73SlfACWjO1bZfs8lZ7gJBov5Iz4akwiQ,3254
|
|
263
|
-
sqlmesh/migrations/v0089_add_virtual_environment_mode.py,sha256=rm6k7CRy2uHozo1Oy17D8WhiV1JldPNCpJ8PukoHSwM,122
|
|
264
|
-
sqlmesh/migrations/v0090_add_forward_only_column.py,sha256=27KPsyXabPhCRYvkHZuzRbgbqVhw_l9__o9BeZyGCO0,3019
|
|
265
|
-
sqlmesh/migrations/v0091_on_additive_change.py,sha256=97yy8XC6dQiTLAtNKsDVtlnejDWhb0xNUCRRpfnOqqk,127
|
|
266
|
-
sqlmesh/migrations/v0092_warn_about_dbt_data_type_diff.py,sha256=YhSeWC0RKCDDUuJLrB9KxH_y5490uQFzrqA0K3SJPiU,1874
|
|
267
|
-
sqlmesh/migrations/v0093_use_raw_sql_in_fingerprint.py,sha256=uY_W_JCCqk-y2IjbkXmuztn7D8J4fOzyL23z5Ng0sfI,122
|
|
268
|
-
sqlmesh/schedulers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
|
-
sqlmesh/utils/__init__.py,sha256=Irn86rKPRKCIni2eZOF-avtIR9nz5_sBJEwldC6Mz9g,11932
|
|
270
|
-
sqlmesh/utils/aws.py,sha256=krxyhrKtsMJDEjT567UbGZogjJ9JRHkvAV-Cg3FVndM,1062
|
|
271
|
-
sqlmesh/utils/cache.py,sha256=GITQ3sldwG4vlI0wKIDI7yOr1CND1EI3necAmeCEW8g,4743
|
|
272
|
-
sqlmesh/utils/concurrency.py,sha256=EMgEecfPFN9_2Wjz4TUksJngECGse7fnKVcLswkmhAk,9274
|
|
273
|
-
sqlmesh/utils/config.py,sha256=-SjIn7Z0HHnMtjPavQIvFcSaeg86XLsGd3sGIwOKrTE,1941
|
|
274
|
-
sqlmesh/utils/connection_pool.py,sha256=-IYbML9HlDN75uhCu-Y3wdsuhlbscE4T89GDI03F0vY,12252
|
|
275
|
-
sqlmesh/utils/conversions.py,sha256=U1i9QRzcTc_rswt7N4KeAfeRM0MHEzDezNUD_A7BFJc,758
|
|
276
|
-
sqlmesh/utils/cron.py,sha256=eGwn4iUeiRoQzwcd9eS2TZkut8nR4yWud77N7xQ9CQ0,1829
|
|
277
|
-
sqlmesh/utils/dag.py,sha256=L_jwKf81wCySmt1TFs4vEKsrIHSOPTBhptlmv1bsSSg,7025
|
|
278
|
-
sqlmesh/utils/date.py,sha256=uS0Kii4hFJeTXqXtM39sDCzvFhTAoPk_NPg51T1YYeo,16218
|
|
279
|
-
sqlmesh/utils/errors.py,sha256=Eo6ZB5cRB2_Pu85J4R2wZrukOZwOKWKpEAWTngNepmM,7889
|
|
280
|
-
sqlmesh/utils/git.py,sha256=v1MD4Zwn52UBn_tTfoKn8SAPJVGC6SEFrJ4WEJFbgF0,1868
|
|
281
|
-
sqlmesh/utils/hashing.py,sha256=nZRKvLNQ83tLG4IoXshVJZf-MbDrXC1HOeNw8Ji-tMM,578
|
|
282
|
-
sqlmesh/utils/jinja.py,sha256=yAIACxVhRvTp-Z-U04yL7uNxXAWvtknJWv1r29pPx00,24386
|
|
283
|
-
sqlmesh/utils/lineage.py,sha256=zz9BPc6MShRy9LEXmAp02x6oKt4ubVNUPdapFVFKkac,16019
|
|
284
|
-
sqlmesh/utils/metaprogramming.py,sha256=6NQKi9PpYhgJEu0Wr_TztRZZ2Kog4Dic9syNqbvztMw,23727
|
|
285
|
-
sqlmesh/utils/migration.py,sha256=R7Ck6FX-LfcujGy7sgS0kDWlK-xAEBODr3gqIQ8gC08,835
|
|
286
|
-
sqlmesh/utils/pandas.py,sha256=FytTSLcRNtO0-YMvpoDBkkut3yoQJR9mBSKpif8lxug,2497
|
|
287
|
-
sqlmesh/utils/process.py,sha256=vpXcpJ1eIbivs7gZdwTKSJI7OS6kKBebnaBzz75ykvs,2428
|
|
288
|
-
sqlmesh/utils/pydantic.py,sha256=o_NsXbIpDqNpUA1Uc5xF0ZzoXQYYB0DfHwdRxBwXPNk,12089
|
|
289
|
-
sqlmesh/utils/rich.py,sha256=cwQ5nJ6sgz64xHtoh6_ec7ReV5YpsOGhMtUJnwoRfEI,3549
|
|
290
|
-
sqlmesh/utils/windows.py,sha256=r7Yin4WEwbvH7sKA3hOJtRsclmscNuBeCklCfVPvtQs,611
|
|
291
|
-
sqlmesh/utils/yaml.py,sha256=KFBd7hsKNRTtRudGR7d410qUYffQv0EWRcDM8hVNNZg,3025
|
|
292
|
-
sqlmesh-0.213.1.dev1.dist-info/licenses/LICENSE,sha256=OlMefUjgWJdULtf84BLW0AZZcY8DwdgQqb_1j2862j8,11346
|
|
293
|
-
sqlmesh_dbt/__init__.py,sha256=awYS5y5mz-1NUmx6i5h5NSTJ7tidRl9NC0FAnFWSF6U,350
|
|
294
|
-
sqlmesh_dbt/cli.py,sha256=28I7NEKIYvLc1bSOnKL-4uYDhc2QVHaZW4RZHjq2Lg0,4483
|
|
295
|
-
sqlmesh_dbt/console.py,sha256=80sCEbrKfR5f3SvxIyI7hw_SuiDiiUwuJYxXbQO2014,830
|
|
296
|
-
sqlmesh_dbt/error.py,sha256=1sPNU6Dik30DR9WTCvGp3ED-pzNmAA3LhP95BXb3ndI,1146
|
|
297
|
-
sqlmesh_dbt/operations.py,sha256=BhNtnQRLPmP1uF8h10k_nv6MQj9jnSNymjVEmDFj_ew,10714
|
|
298
|
-
sqlmesh_dbt/options.py,sha256=noB_qK4uGGi7Erqk1XkkMaFz5aUc6lp44wwn1Nv_LI4,737
|
|
299
|
-
sqlmesh_dbt/selectors.py,sha256=4w8eE0qAgoYC2K8afk3whfju-u3e5muXGwgkfXxQR3Y,5228
|
|
300
|
-
web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
|
-
web/client/dist/index.html,sha256=9Xh9IRDTAsC-XXYlaB1dLXv3dv15cDXnW2qz1z-Dj98,5472
|
|
302
|
-
web/client/dist/assets/Audits-Ucsx1GzF.js,sha256=fZhFbeOvI1RlQt7dBwG-GLDt5SBbCdbTY0i4zfXFGwE,1041
|
|
303
|
-
web/client/dist/assets/Banner-BWDzvavM.js,sha256=I8tgkEPFqUH4bdJ_u8iyhBNglqJ0x_XPZqMthqYnnpM,1549
|
|
304
|
-
web/client/dist/assets/ChevronDownIcon-D2VL13Ah.js,sha256=Ml74VRMBwg-ZYLJexlT4pqCRJUCF_Y-nnmOIuYlchec,553
|
|
305
|
-
web/client/dist/assets/ChevronRightIcon-DWGYbf1l.js,sha256=ABUpPNKPocxy_dHeWuvBh5rW26kG2igFgABR5LZQ7rE,553
|
|
306
|
-
web/client/dist/assets/Content-Bikfy8fh.js,sha256=yC_UJE9jnoK3LhYdFt_4bRYr6jeswMyP5wdF2B2dp2I,37525
|
|
307
|
-
web/client/dist/assets/Content-DdHDZM3I.js,sha256=rKIHt-adQ5_1w-IwS-AjCGOrNvIJ8HJz25raJ4-KjIg,803
|
|
308
|
-
web/client/dist/assets/Data-CzAJH7rW.js,sha256=fr2ZI7zxHRYnAea-Kaxm6AT9Oma5TXFigXTlpcTbdXg,983
|
|
309
|
-
web/client/dist/assets/DataCatalog-BJF11g8f.js,sha256=NLstC2h4KaXnOECqm_ULBc1nNqAbBFzbHWLDtznbkEk,122486
|
|
310
|
-
web/client/dist/assets/Editor-DgLhgKnm.js,sha256=Da7LGf1blF1TDDUmF04cKhFFMXhm-5LDT9UCx87VXBI,1490
|
|
311
|
-
web/client/dist/assets/Editor-s0SBpV2y.js,sha256=eRs-aNulRmbn2qlegs8M0yreh5S7XFKylVHc1gFjuc0,43613
|
|
312
|
-
web/client/dist/assets/Errors-D0m0O1d3.js,sha256=1KeQjLT5fd5uwnSo_LCXQn2k1BawWZJ32B9gWZgofdA,1361
|
|
313
|
-
web/client/dist/assets/FileExplorer-CEv0vXkt.js,sha256=SPfQEhiIpLjjxymCQQYJqq5I0DRnEr2_8nsw35w7AHk,87619
|
|
314
|
-
web/client/dist/assets/Footer-BwzXn8Ew.js,sha256=OxzbFjojCjn8hqGgFu1aI0b_54LNjc8NIgOw7oeCTB8,700
|
|
315
|
-
web/client/dist/assets/Header-6heDkEqG.js,sha256=9VAeil-c8RFU8ZlAGXxuT2qnS9yaJ5usMh-jDqMdSEA,11424
|
|
316
|
-
web/client/dist/assets/Input-obuJsD6k.js,sha256=sTq7zYnmQJUfmh_q56vjzXuOye4W97eJwjUBy1l0D8c,54814
|
|
317
|
-
web/client/dist/assets/Lineage-D0Hgdz2v.js,sha256=JvBTtnUmUxH1H6skABUdu4nQUtFU7a2N1FQ_n2A-XqA,1002
|
|
318
|
-
web/client/dist/assets/ListboxShow-HM9_qyrt.js,sha256=LLZcdg0dHY55rYW_M7MB9puIBlIvp_ZejDd7cRsXxTw,30373
|
|
319
|
-
web/client/dist/assets/ModelLineage-zWdKo0U2.js,sha256=SyDFRFLmrlorMyIvhg0Msuy5tzR30cMclmQSGV2E9Zo,15546
|
|
320
|
-
web/client/dist/assets/Models-Bcu66SRz.js,sha256=a9QqnNZAowb8HU-JB_nm1oGgHC5dCtupkqH1mE8WACo,2194
|
|
321
|
-
web/client/dist/assets/Page-BWEEQfIt.js,sha256=JE3NYoxBxYL5fNOUOkrTnKaXcZ0SBzdXtB0FeV_i--4,589
|
|
322
|
-
web/client/dist/assets/Plan-C4gXCqlf.js,sha256=subqv1up0ZWQSwiZNFq551Nn09MrKrsvWvx5HRmGOyI,666
|
|
323
|
-
web/client/dist/assets/PlusCircleIcon-CVDO651q.js,sha256=Mz_ln0__xvSR7t6GMPIDdUd9GuNMMWSimqmqm6xmi1o,11698
|
|
324
|
-
web/client/dist/assets/ReportErrors-BT6xFwAr.js,sha256=_VFXXBXy4J3Md9nHJwW8b_1GyAJKY9TrQlnVX6DtCHc,5419
|
|
325
|
-
web/client/dist/assets/Root-ryJoBK4h.js,sha256=rOPlvJKoPaN2TwIshEFQ1KwaRMY6F1yQ3WtMB8Ruffg,42195
|
|
326
|
-
web/client/dist/assets/SearchList-DB04sPb9.js,sha256=RvTf5Tid40hsNqpL81r45hhOQr3Ye8c3yAA4bVMpljQ,291947
|
|
327
|
-
web/client/dist/assets/SelectEnvironment-CUYcXUu6.js,sha256=925_IQzAAwaGdlC5uCRoIAEj7W1kHvtRDwMNQyVWwP0,37637
|
|
328
|
-
web/client/dist/assets/SourceList-Doo_9ZGp.js,sha256=sUtKm-k5lq8MUrNet9rz7wIICCMqSOFveJvuPzJ-gWM,3205
|
|
329
|
-
web/client/dist/assets/SourceListItem-D5Mj7Dly.js,sha256=DxdnizaIWwbMTrwi26GJyZ1QZa3OAwLprxK87uG-8Fo,1106
|
|
330
|
-
web/client/dist/assets/SplitPane-qHmkD1qy.js,sha256=q8Bstqx4cA9uC7BDxADvilVFRKuCCCsQSr9luhSPMvM,10439
|
|
331
|
-
web/client/dist/assets/Tests-DH1Z74ML.js,sha256=LSvaZG8lS_epR75acumCpbw51PIpiUbDvK-XcGzJLIk,1014
|
|
332
|
-
web/client/dist/assets/Welcome-DqUJUNMF.js,sha256=Wde8450kQO2Xq2Wn9xI_a8MjhbuOL98oWKamLh98VHs,354
|
|
333
|
-
web/client/dist/assets/_commonjs-dynamic-modules-TDtrdbi3.js,sha256=WQq4BXvAMsPhT58adqrv_QHaYJQT-xKIiBnKBDPB-uk,239
|
|
334
|
-
web/client/dist/assets/context-DgX0fp2E.js,sha256=0jhQbksKc-rJOsHqn3Jn3wPJewhFJy9WpVz0euVkfVo,2057186
|
|
335
|
-
web/client/dist/assets/context-Dr54UHLi.js,sha256=iN61d1PAGvuiHKZ6ECi9dRNJ0suhDQiCecLVHLt8ehI,4517
|
|
336
|
-
web/client/dist/assets/editor-DYIP1yQ4.js,sha256=6-Uaio8WMjkRz2KtfQ3mkWlVhats5024VmRj7wEpjw0,7858
|
|
337
|
-
web/client/dist/assets/file-DarlIDVi.js,sha256=jqe2DAtP6zhWjbfss914pP7w2Pnw3K1wloDq1tqnLgQ,2349
|
|
338
|
-
web/client/dist/assets/floating-ui.react-dom-BH3TFvkM.js,sha256=FL9GzpoKeOi1HIFoR1Ikxokg_CgVrO7mh2fgzzcIY1g,22390
|
|
339
|
-
web/client/dist/assets/help-B59vE3aE.js,sha256=Vy4k2eAY_7je9db4t0OcYbo7g7QHgngXM2Za7baFBgg,447
|
|
340
|
-
web/client/dist/assets/help-Bl8wqaQc.js,sha256=3hOu0l9ncdmOwzhGKxDLI_pdOgjzVcWsSCGgy7jPalw,57842
|
|
341
|
-
web/client/dist/assets/index-D1sR7wpN.js,sha256=ft0XlTmCP_13bROT556iZ0DTpBlbXZ3i6gxL2-O3DCs,13375
|
|
342
|
-
web/client/dist/assets/index-O3mjYpnE.js,sha256=EtfOCBvi1l6fIBzJ4dz1FSx1WLa4RwugJ8mvCgvcosk,529787
|
|
343
|
-
web/client/dist/assets/plan-CehRrJUG.js,sha256=u9F-gdgvSSIcR1aoXaSph8-AwTuxYTz86-n2sG15Jb4,13754
|
|
344
|
-
web/client/dist/assets/popover-CqgMRE0G.js,sha256=8yJSKZU4G0Kn_5MKptSaw-HtPYT2LWYVGYTUlndfgJI,68210
|
|
345
|
-
web/client/dist/assets/project-6gxepOhm.js,sha256=0a1e_1RkzYvE7M7k-2JTgzjyNqwyrmczxOmnqZeYFWg,3338
|
|
346
|
-
web/client/dist/css/base.css,sha256=JApDmQihY7DRy5Bd30uYMm5NdMKm0QsEOMBsOuK7gyU,9048
|
|
347
|
-
web/client/dist/css/design.css,sha256=9VTHN-aYFVW6I53jUWbV8qaqo87tXyZTYSWFLC_sRQY,17057
|
|
348
|
-
web/client/dist/favicons/favicon.svg,sha256=ZPNT00J77RHUj6Nlh6Z4Puxnp_oq9RSqACjomhDRUXE,1586
|
|
349
|
-
"web/client/dist/fonts/Inter/Inter-VariableFont_slnt,wght.ttf",sha256=uajl4hOXdmW-KlbbZpRaFsaG2j2YYa8eeFEyLPFUleo,803384
|
|
350
|
-
web/client/dist/fonts/Inter/OFL.txt,sha256=kYc6uZ5stgb2KiIpY6iAe2nnQlNVI9tSkYjYnRUkwnI,4469
|
|
351
|
-
web/client/dist/fonts/Inter/README.txt,sha256=0uNYDDCqgV9SsIERyyfl2WBgDZresI5OKdXTpIXsZZ4,2254
|
|
352
|
-
web/client/dist/fonts/Inter/static/Inter-Black.ttf,sha256=OvsrBWVHWXu3kXv3VL1C8-u_SzJWCQLlVrFvG25mt1g,316372
|
|
353
|
-
web/client/dist/fonts/Inter/static/Inter-Bold.ttf,sha256=eQwQi-_oWdrC3b0grz-7aRfGAbPVRMigV2FRnztVCP4,316100
|
|
354
|
-
web/client/dist/fonts/Inter/static/Inter-ExtraBold.ttf,sha256=TiRzuf51wGjj87m6IyXGLanRvnQo2zCP2F3zC1Al4UU,316716
|
|
355
|
-
web/client/dist/fonts/Inter/static/Inter-ExtraLight.ttf,sha256=7bpb4PE5zl9D2KRIanZmiBILrDV2QbhMYdFkAD8xUn0,310808
|
|
356
|
-
web/client/dist/fonts/Inter/static/Inter-Light.ttf,sha256=xE_3pf3kgW-U_B5eIysCGoEqQRM53dCLCkdcpuIduBA,310420
|
|
357
|
-
web/client/dist/fonts/Inter/static/Inter-Medium.ttf,sha256=ENSDMfWzxzYso1ewDBesSGOtNRmbE7Ds6wliyMGtfck,314712
|
|
358
|
-
web/client/dist/fonts/Inter/static/Inter-Regular.ttf,sha256=QasPcHor-rgTPM382rUigvX3nldR9DomSAVFHHu5X7g,309828
|
|
359
|
-
web/client/dist/fonts/Inter/static/Inter-SemiBold.ttf,sha256=6MvCuIvEJoI3_14lF3bTxU7csU4BWp5m5Ig73ktV8T8,315756
|
|
360
|
-
web/client/dist/fonts/Inter/static/Inter-Thin.ttf,sha256=t3ilK4Tzm6HTsIVTokZkNXOzNFO1SBtNCcYEvMztkw0,310516
|
|
361
|
-
web/client/dist/fonts/JetBrains_Mono/JetBrainsMono-Italic-VariableFont_wght.ttf,sha256=0qFWPomqPDgWq_vKA-KVq83KEdnL1omndUzBxfRU0Y8,191988
|
|
362
|
-
web/client/dist/fonts/JetBrains_Mono/JetBrainsMono-VariableFont_wght.ttf,sha256=tkkOGpAuVvyEBQvumq2RUJ5vRaoA-W-ILatTyauvg-s,187860
|
|
363
|
-
web/client/dist/fonts/JetBrains_Mono/OFL.txt,sha256=FmF9WCW65YmLH3jkR70S_NxGhu_lEEHQanxKEqSxOUQ,4491
|
|
364
|
-
web/client/dist/fonts/JetBrains_Mono/README.txt,sha256=FFHJxfOcWo4OoMADwpEtps7shQ8yxFz3nFaRaJT1x5I,2693
|
|
365
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-Bold.ttf,sha256=s4nts_yTQ7iju8mg65uygpf5iyTh8oNB6RTnaAEF6cM,114832
|
|
366
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-BoldItalic.ttf,sha256=9wON5lEk3LSMXXwPvEY2RggV5LI4AcedWROIj-Vg9QQ,117928
|
|
367
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-ExtraBold.ttf,sha256=zdcfPqhR1d_fpnNqrCO_1lsmE3WoWUWo79CVNaxQo2I,114804
|
|
368
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-ExtraBoldItalic.ttf,sha256=qvQU9qxmxa7rlpYs5cieiGAE8lOMMfjrR3uXT9aLyyY,117960
|
|
369
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-ExtraLight.ttf,sha256=VOvayPv9GAuikXPC8waVcRZWfru4pW7R3srh9lfnTj4,115076
|
|
370
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-ExtraLightItalic.ttf,sha256=JWu5dACkrhdn3iyJd7SA3TEeSCh02mGswNPowpsbAM8,118236
|
|
371
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-Italic.ttf,sha256=V-Hi5HFZRC39pRFpS2sw6rpMzos4i_TRI1Q4kj2BBlI,117948
|
|
372
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-Light.ttf,sha256=J3ri2WVI2RrQtq3GcHPP_0m4w1rELmWgf-z4Vil0MqY,115024
|
|
373
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-LightItalic.ttf,sha256=X1Bwcb9G-R5sPL_P0EgbO08Xv-5qrBQQRvv1-6i2J5I,118132
|
|
374
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-Medium.ttf,sha256=g49gwa9Hba8PO77WFDhAx42UfOl_V-gmyg2FDhDG9Gg,114924
|
|
375
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-MediumItalic.ttf,sha256=9t0NYmX6of0baD3WTst664u32iMhLQCdO5tCflsuiTs,118052
|
|
376
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-Regular.ttf,sha256=kognlxsMKoiTWBeyrOpbKcETL7dqodFi1PBzRIKHLeA,114908
|
|
377
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-SemiBold.ttf,sha256=RzD9318m3e4kxI9zbnEcNLLeMtwk7Mx_v76_ex7g4lk,114904
|
|
378
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-SemiBoldItalic.ttf,sha256=EUomsX3Ym4nh0p3PMrSAv9HmDHWvqJFRce4wCzNB5go,118040
|
|
379
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-Thin.ttf,sha256=r10Kl3Hy78_yC_-6_697Lv8H0JjGTU4ob6Eas7gECrk,115000
|
|
380
|
-
web/client/dist/fonts/JetBrains_Mono/static/JetBrainsMono-ThinItalic.ttf,sha256=voTGY7Sqew-eJ1BXQBO4rDVBhVBYJ-7IA2_0WGawjJs,118164
|
|
381
|
-
web/client/dist/fonts/Martina_Plantijn/martina-plantijn-regular.otf,sha256=5BeJf43ID1ga_iZkeJej9FRSPgF3lRZWtV9aP5hG8bQ,380996
|
|
382
|
-
web/client/dist/fonts/Martina_Plantijn/martina-plantijn-regular.woff2,sha256=p30_Y0Gmv7bHOjtCqGMTW2tUdafmldEBiQPTbdWLPlM,44660
|
|
383
|
-
web/client/dist/fonts/Sohne/sohne-buch-kursiv.otf,sha256=2iLhMX4fb2uVOUtPDUhtW9vGnX-217t6XQO4VeMG2l0,207016
|
|
384
|
-
web/client/dist/fonts/Sohne/sohne-buch-kursiv.woff2,sha256=KYCEqBgItjLlMwzIwv4YEpfe0txZwseZg0Uh4P0IRsg,34273
|
|
385
|
-
web/client/dist/fonts/Sohne/sohne-buch.otf,sha256=3_rwTxn22zZRdDQOZR1QF0tFn7qPDon3DGIQaXpF5ik,191552
|
|
386
|
-
web/client/dist/fonts/Sohne/sohne-buch.woff2,sha256=rnatJKovncrimgyPTNrKYG0B9mvNPKDXaqBejLEVbhM,33115
|
|
387
|
-
web/client/dist/fonts/Sohne/sohne-kraftig.otf,sha256=9mQB7BqhvVXwJcnDnVAXI5PnPtbfRdC-eqQhSAbWixE,186004
|
|
388
|
-
web/client/dist/fonts/Sohne/sohne-kraftig.woff2,sha256=ilbk_DuzBwKoTx9fkT8UYds6Me2Ny_8_ECd1g_IKN28,31911
|
|
389
|
-
web/client/dist/fonts/Sohne/sohne-mono-buch.otf,sha256=vtmK-btEkjTBZbmEOkrpaFeYjtz9WwshVHVOoNR2hpE,73232
|
|
390
|
-
web/client/dist/fonts/Sohne/sohne-mono-buch.woff2,sha256=6yxff8Gx3Ao29l6g2W-W5k-HFgyEFokNFdde_Q2SR-k,25795
|
|
391
|
-
web/client/dist/fonts/Sohne/sohne-mono-kraftig.otf,sha256=cqHc9TTH04lnJyxN_hgKTgpcZ7rB1XQRB-ylpNa6Xjg,75272
|
|
392
|
-
web/client/dist/fonts/Sohne/sohne-mono-kraftig.woff2,sha256=DGsWMljiFHztzyb0Gg_TpiDq1_mCniAz6k__qSsjU4E,25703
|
|
393
|
-
web/client/src/workers/sqlglot/sqlglot.py,sha256=XAMrvqcRBa7vy8bHVayYbZNyWsf1lNSjVk_odtif-YY,1566
|
|
394
|
-
web/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
|
-
web/server/app.py,sha256=b6qEJ4btjaSm2kWwQUGV--S3VE8QW0Um7f4rBdaoB_M,59
|
|
396
|
-
web/server/console.py,sha256=s9caTcfLd-0Zhj6cQgkJBYxsl9w_ZDNv3gN6MaBNj0o,14806
|
|
397
|
-
web/server/exceptions.py,sha256=I2PPpChwhDWawQENr5kHg6DjyRGeiJ6OWZsCzEZhVzs,1533
|
|
398
|
-
web/server/main.py,sha256=9PaDa8sigo1z0AxtI3sQ3fHmDqs6uXwP-_IvoMwkznw,3199
|
|
399
|
-
web/server/models.py,sha256=SfuknVLSRzAAiTzUQgGyQbF5aZBt8yZg-sBnQ_8lWJQ,16552
|
|
400
|
-
web/server/openapi.py,sha256=NOg__YQg7arVdajQv5CvOA5KLTQCfGZFvwnjARuM6iE,586
|
|
401
|
-
web/server/settings.py,sha256=_W50-Holci5Zv8goK7qATLRD1_Fcx-75gcNTVjdGDOc,3770
|
|
402
|
-
web/server/utils.py,sha256=bb6AOM3Nga-zihPjZvJeDL6sHqTPNC_SYjklsy8tAQA,4013
|
|
403
|
-
web/server/watcher.py,sha256=2c08EfXkgAfqpAEoFidkYjGH48DkLDyMueVp4afICHM,5334
|
|
404
|
-
web/server/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
405
|
-
web/server/api/endpoints/__init__.py,sha256=FcXl56-kPqbKgCZKOx0kjE50hn37q1m-nwOCxI9tRcc,932
|
|
406
|
-
web/server/api/endpoints/commands.py,sha256=Fj7FUxOuageasij_7-dVvOlJMsBnRmFBWYk_-t91UQI,8242
|
|
407
|
-
web/server/api/endpoints/directories.py,sha256=Aa8U4pTs3Saj5DnJ9TDnX9mZois-EXgpcBm5GpNNM_s,1822
|
|
408
|
-
web/server/api/endpoints/environments.py,sha256=g3YC6j4LLlG_wjJqn-Hrz78BWmgS7vhUhzaycsiez00,2124
|
|
409
|
-
web/server/api/endpoints/events.py,sha256=tjhOhGe9jt7L1mOLLapl5qTvicDRnP5lPZHSq9OnSVI,932
|
|
410
|
-
web/server/api/endpoints/files.py,sha256=Rr0YS9Nz9vLH9KvGAfxbMlxN8j1XxU9CViFvlKoP2YQ,6747
|
|
411
|
-
web/server/api/endpoints/lineage.py,sha256=XU99RI-6Q9SidItGM5WLQMje8NhM5nZWHbtWxDwWeFE,6050
|
|
412
|
-
web/server/api/endpoints/meta.py,sha256=QKWWrHewGh5JS8mCSWXTKCIQwXw-TQfaT9tWt_SsNY4,1032
|
|
413
|
-
web/server/api/endpoints/models.py,sha256=kwj0s7uve3iZSMfmjkoPVMFMeY1sD0peTeyrWfzI0kI,4742
|
|
414
|
-
web/server/api/endpoints/modules.py,sha256=8hqqgonGay_mJmpCw0IdbjsPhWlQH2VLdKAqha-myac,468
|
|
415
|
-
web/server/api/endpoints/plan.py,sha256=bbbY50W_2MsZSTxOHWMKz0tbIm75nsRSlPy8GI2fg9Q,9306
|
|
416
|
-
web/server/api/endpoints/table_diff.py,sha256=8XTwgOh6QBbNy_hTM1JuHgRjbnie-pGPrphiW-FNLjQ,6058
|
|
417
|
-
sqlmesh-0.213.1.dev1.dist-info/METADATA,sha256=IWwUqwPsz9_vjwRBPCbBqaqrpkWo0ZHsuYdDskAOgJM,26773
|
|
418
|
-
sqlmesh-0.213.1.dev1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
419
|
-
sqlmesh-0.213.1.dev1.dist-info/entry_points.txt,sha256=sHAf6tQczIM8xZoduN4qaUjV7QEPVUUW_LCT8EDUMv4,155
|
|
420
|
-
sqlmesh-0.213.1.dev1.dist-info/top_level.txt,sha256=RQ-33FPe2IgL0rgossAfJkCRtqslz9b7wFARqiWLC5Q,24
|
|
421
|
-
sqlmesh-0.213.1.dev1.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{s as u,Q as c,a as n,v as a,j as s,e as f}from"./index-O3mjYpnE.js";import{L as g}from"./context-DgX0fp2E.js";import x from"./ModelLineage-zWdKo0U2.js";import"./_commonjs-dynamic-modules-TDtrdbi3.js";import"./floating-ui.react-dom-BH3TFvkM.js";import"./editor-DYIP1yQ4.js";import"./file-DarlIDVi.js";import"./project-6gxepOhm.js";import"./help-B59vE3aE.js";import"./SourceList-Doo_9ZGp.js";import"./Input-obuJsD6k.js";import"./index-D1sR7wpN.js";import"./popover-CqgMRE0G.js";import"./ListboxShow-HM9_qyrt.js";import"./SearchList-DB04sPb9.js";function S(){const l=u(),{modelName:t}=c(),i=n(e=>e.models),o=n(e=>e.lastSelectedModel),r=a(t)||t===(o==null?void 0:o.name)?o:i.get(encodeURI(t));function d(e){const m=i.get(e);a(m)||l(f.LineageModels+"/"+m.name)}function p(e){console.log(e==null?void 0:e.message)}return s.jsx("div",{className:"flex overflow-hidden w-full h-full",children:s.jsx(g,{showColumns:!0,handleClickModel:d,handleError:p,children:s.jsx(x,{model:r})})})}export{S as default};
|