sqlmesh 0.231.2.dev4__py3-none-any.whl → 0.231.2.dev5__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/_version.py +2 -2
- sqlmesh/cli/main.py +1 -1
- sqlmesh/core/model/common.py +2 -2
- sqlmesh/core/plan/builder.py +1 -1
- sqlmesh/core/renderer.py +1 -1
- sqlmesh/core/snapshot/evaluator.py +1 -1
- sqlmesh/core/state_sync/db/migrator.py +1 -1
- sqlmesh/dbt/column.py +1 -1
- sqlmesh/migrations/v0092_warn_about_dbt_data_type_diff.py +2 -2
- {sqlmesh-0.231.2.dev4.dist-info → sqlmesh-0.231.2.dev5.dist-info}/METADATA +11 -9
- {sqlmesh-0.231.2.dev4.dist-info → sqlmesh-0.231.2.dev5.dist-info}/RECORD +15 -15
- {sqlmesh-0.231.2.dev4.dist-info → sqlmesh-0.231.2.dev5.dist-info}/WHEEL +0 -0
- {sqlmesh-0.231.2.dev4.dist-info → sqlmesh-0.231.2.dev5.dist-info}/entry_points.txt +0 -0
- {sqlmesh-0.231.2.dev4.dist-info → sqlmesh-0.231.2.dev5.dist-info}/licenses/LICENSE +0 -0
- {sqlmesh-0.231.2.dev4.dist-info → sqlmesh-0.231.2.dev5.dist-info}/top_level.txt +0 -0
sqlmesh/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.231.2.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 231, 2, '
|
|
31
|
+
__version__ = version = '0.231.2.dev5'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 231, 2, 'dev5')
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
sqlmesh/cli/main.py
CHANGED
sqlmesh/core/model/common.py
CHANGED
|
@@ -255,7 +255,7 @@ def _add_variables_to_python_env(
|
|
|
255
255
|
# - appear in metadata-only expressions, such as `audits (...)`, virtual statements, etc
|
|
256
256
|
# - appear in the ASTs or definitions of metadata-only macros
|
|
257
257
|
#
|
|
258
|
-
# See also: https://github.com/
|
|
258
|
+
# See also: https://github.com/SQLMesh/sqlmesh/pull/4936#issuecomment-3136339936,
|
|
259
259
|
# specifically the "Terminology" and "Observations" section.
|
|
260
260
|
metadata_used_variables = {
|
|
261
261
|
var_name for var_name, is_metadata in used_variables.items() if is_metadata
|
|
@@ -275,7 +275,7 @@ def _add_variables_to_python_env(
|
|
|
275
275
|
if overlapping_variables := (non_metadata_used_variables & metadata_used_variables):
|
|
276
276
|
raise ConfigError(
|
|
277
277
|
f"Variables {', '.join(overlapping_variables)} are both metadata and non-metadata, "
|
|
278
|
-
"which is unexpected. Please file an issue at https://github.com/
|
|
278
|
+
"which is unexpected. Please file an issue at https://github.com/SQLMesh/sqlmesh/issues/new."
|
|
279
279
|
)
|
|
280
280
|
|
|
281
281
|
metadata_variables = {
|
sqlmesh/core/plan/builder.py
CHANGED
|
@@ -165,7 +165,7 @@ class PlanBuilder:
|
|
|
165
165
|
# There may be an significant delay between the PlanBuilder producing a Plan and the Plan actually being run
|
|
166
166
|
# so if execution_time=None is passed to the PlanBuilder, then the resulting Plan should also have execution_time=None
|
|
167
167
|
# in order to prevent the Plan that was intended to run "as at now" from having "now" fixed to some time in the past
|
|
168
|
-
# ref: https://github.com/
|
|
168
|
+
# ref: https://github.com/SQLMesh/sqlmesh/pull/4702#discussion_r2140696156
|
|
169
169
|
self._execution_time = execution_time
|
|
170
170
|
|
|
171
171
|
self._backfill_models = backfill_models
|
sqlmesh/core/renderer.py
CHANGED
|
@@ -690,7 +690,7 @@ class QueryRenderer(BaseExpressionRenderer):
|
|
|
690
690
|
|
|
691
691
|
except Exception as ex:
|
|
692
692
|
raise_config_error(
|
|
693
|
-
f"Failed to optimize query, please file an issue at https://github.com/
|
|
693
|
+
f"Failed to optimize query, please file an issue at https://github.com/SQLMesh/sqlmesh/issues/new. {ex}",
|
|
694
694
|
self._path,
|
|
695
695
|
)
|
|
696
696
|
|
|
@@ -714,7 +714,7 @@ class SnapshotEvaluator:
|
|
|
714
714
|
deployability_index = deployability_index or DeployabilityIndex.all_deployable()
|
|
715
715
|
is_snapshot_deployable = deployability_index.is_deployable(snapshot)
|
|
716
716
|
target_table_name = snapshot.table_name(is_deployable=is_snapshot_deployable)
|
|
717
|
-
# https://github.com/
|
|
717
|
+
# https://github.com/SQLMesh/sqlmesh/issues/2609
|
|
718
718
|
# If there are no existing intervals yet; only consider this a first insert for the first snapshot in the batch
|
|
719
719
|
if target_table_exists is None:
|
|
720
720
|
target_table_exists = adapter.table_exists(target_table_name)
|
|
@@ -195,7 +195,7 @@ class StateMigrator:
|
|
|
195
195
|
raise SQLMeshError(
|
|
196
196
|
f"Number of snapshots before ({snapshot_count_before}) and after "
|
|
197
197
|
f"({snapshot_count_after}) applying migration scripts {scripts} does not match. "
|
|
198
|
-
"Please file an issue issue at https://github.com/
|
|
198
|
+
"Please file an issue issue at https://github.com/SQLMesh/sqlmesh/issues/new."
|
|
199
199
|
)
|
|
200
200
|
|
|
201
201
|
migrate_snapshots_and_environments = (
|
sqlmesh/dbt/column.py
CHANGED
|
@@ -42,7 +42,7 @@ def column_types_to_sqlmesh(
|
|
|
42
42
|
)
|
|
43
43
|
if column_def.args.get("constraints"):
|
|
44
44
|
logger.warning(
|
|
45
|
-
f"Ignoring unsupported constraints for column '{name}' with definition '{column.data_type}'. Please refer to github.com/
|
|
45
|
+
f"Ignoring unsupported constraints for column '{name}' with definition '{column.data_type}'. Please refer to github.com/SQLMesh/sqlmesh/issues/4717 for more information."
|
|
46
46
|
)
|
|
47
47
|
kind = column_def.kind
|
|
48
48
|
if kind:
|
|
@@ -5,7 +5,7 @@ SQLMesh previously treated dbt's schema.yml data_type field as columns_to_types,
|
|
|
5
5
|
doesn't match dbt's behavior. dbt only uses data_type for contracts/validation, not DDL.
|
|
6
6
|
This fix may cause diffs if tables were created with incorrect types.
|
|
7
7
|
|
|
8
|
-
More context: https://github.com/
|
|
8
|
+
More context: https://github.com/SQLMesh/sqlmesh/pull/5231
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
11
|
import json
|
|
@@ -33,7 +33,7 @@ def migrate_rows(engine_adapter, schema, **kwargs): # type: ignore
|
|
|
33
33
|
"tables may have been created with incorrect column types. After this migration, run "
|
|
34
34
|
"'sqlmesh diff prod' to check for column type differences, and if any are found, "
|
|
35
35
|
"apply a plan to correct the table schemas. For more details, see: "
|
|
36
|
-
"https://github.com/
|
|
36
|
+
"https://github.com/SQLMesh/sqlmesh/pull/5231."
|
|
37
37
|
)
|
|
38
38
|
|
|
39
39
|
for (snapshot,) in engine_adapter.fetchall(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sqlmesh
|
|
3
|
-
Version: 0.231.2.
|
|
3
|
+
Version: 0.231.2.dev5
|
|
4
4
|
Summary: Next-generation data transformation framework
|
|
5
5
|
Author: SQLMesh Contributors
|
|
6
6
|
License: Apache License
|
|
@@ -207,8 +207,8 @@ License: Apache License
|
|
|
207
207
|
|
|
208
208
|
Project-URL: Homepage, https://sqlmesh.com/
|
|
209
209
|
Project-URL: Documentation, https://sqlmesh.readthedocs.io/en/stable/
|
|
210
|
-
Project-URL: Repository, https://github.com/
|
|
211
|
-
Project-URL: Issues, https://github.com/
|
|
210
|
+
Project-URL: Repository, https://github.com/SQLMesh/sqlmesh
|
|
211
|
+
Project-URL: Issues, https://github.com/SQLMesh/sqlmesh/issues
|
|
212
212
|
Classifier: Intended Audience :: Developers
|
|
213
213
|
Classifier: Intended Audience :: Science/Research
|
|
214
214
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
@@ -368,7 +368,7 @@ It is more than just a [dbt alternative](https://tobikodata.com/reduce_costs_wit
|
|
|
368
368
|
|
|
369
369
|
## Core Features
|
|
370
370
|
|
|
371
|
-
<img src="https://github.com/
|
|
371
|
+
<img src="https://github.com/SQLMesh/sqlmesh-public-assets/blob/main/vscode.gif?raw=true" alt="SQLMesh Plan Mode">
|
|
372
372
|
|
|
373
373
|
> Get instant SQL impact and context of your changes, both in the CLI and in the [SQLMesh VSCode Extension](https://sqlmesh.readthedocs.io/en/latest/guides/vscode/?h=vs+cod)
|
|
374
374
|
|
|
@@ -477,12 +477,12 @@ outputs:
|
|
|
477
477
|
* Never build a table [more than once](https://tobikodata.com/simplicity-or-efficiency-how-dbt-makes-you-choose.html)
|
|
478
478
|
* Track what data’s been modified and run only the necessary transformations for [incremental models](https://tobikodata.com/correctly-loading-incremental-data-at-scale.html)
|
|
479
479
|
* Run [unit tests](https://tobikodata.com/we-need-even-greater-expectations.html) for free and configure automated audits
|
|
480
|
-
* Run [table diffs](https://sqlmesh.readthedocs.io/en/stable/examples/sqlmesh_cli_crash_course/?h=crash#run-data-diff-against-prod) between prod and dev based on tables/views impacted by a change
|
|
480
|
+
* Run [table diffs](https://sqlmesh.readthedocs.io/en/stable/examples/sqlmesh_cli_crash_course/?h=crash#run-data-diff-against-prod) between prod and dev based on tables/views impacted by a change
|
|
481
481
|
|
|
482
482
|
<details>
|
|
483
483
|
<summary><b>Level Up Your SQL</b></summary>
|
|
484
484
|
Write SQL in any dialect and SQLMesh will transpile it to your target SQL dialect on the fly before sending it to the warehouse.
|
|
485
|
-
<img src="https://github.com/
|
|
485
|
+
<img src="https://github.com/SQLMesh/sqlmesh/blob/main/docs/readme/transpile_example.png?raw=true" alt="Transpile Example">
|
|
486
486
|
</details>
|
|
487
487
|
|
|
488
488
|
* Debug transformation errors *before* you run them in your warehouse in [10+ different SQL dialects](https://sqlmesh.readthedocs.io/en/stable/integrations/overview/#execution-engines)
|
|
@@ -525,15 +525,17 @@ sqlmesh init # follow the prompts to get started (choose DuckDB)
|
|
|
525
525
|
|
|
526
526
|
Follow the [quickstart guide](https://sqlmesh.readthedocs.io/en/stable/quickstart/cli/) to learn how to use SQLMesh. You already have a head start!
|
|
527
527
|
|
|
528
|
-
Follow the [crash course](https://sqlmesh.readthedocs.io/en/stable/examples/sqlmesh_cli_crash_course/) to learn the core movesets and use the easy to reference cheat sheet.
|
|
528
|
+
Follow the [crash course](https://sqlmesh.readthedocs.io/en/stable/examples/sqlmesh_cli_crash_course/) to learn the core movesets and use the easy to reference cheat sheet.
|
|
529
529
|
|
|
530
530
|
Follow this [example](https://sqlmesh.readthedocs.io/en/stable/examples/incremental_time_full_walkthrough/) to learn how to use SQLMesh in a full walkthrough.
|
|
531
531
|
|
|
532
532
|
## Join Our Community
|
|
533
533
|
Connect with us in the following ways:
|
|
534
534
|
|
|
535
|
-
* Join the [
|
|
536
|
-
* File an issue on our [GitHub](https://github.com/
|
|
535
|
+
* Join the [Tobiko Slack Community](https://tobikodata.com/slack) to ask questions, or just to say hi!
|
|
536
|
+
* File an issue on our [GitHub](https://github.com/SQLMesh/sqlmesh/issues/new)
|
|
537
|
+
* Send us an email at [hello@tobikodata.com](mailto:hello@tobikodata.com) with your questions or feedback
|
|
538
|
+
* Read our [blog](https://tobikodata.com/blog)
|
|
537
539
|
|
|
538
540
|
## Contributing
|
|
539
541
|
We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on how to contribute, including our DCO sign-off requirement.
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
sqlmesh/__init__.py,sha256=v_spqQEhcnGaahp1yPvMqUIa6mhH3cs3Bc1CznxvCEA,7965
|
|
2
|
-
sqlmesh/_version.py,sha256=
|
|
2
|
+
sqlmesh/_version.py,sha256=J1_Kf_OjXIDX-2VrKDjVqBzwpCehiZoXT9KUx_7xVAU,721
|
|
3
3
|
sqlmesh/magics.py,sha256=7Q1_lXSD_PgYH40Hsx6-OkfSQC3UJZgF043RVFRnw1s,42082
|
|
4
4
|
sqlmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
sqlmesh/cicd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
sqlmesh/cicd/bot.py,sha256=2zlbn-DXkqQzr3lA0__IGU4XaIfXBXBKLWXNI2DRJX8,759
|
|
7
7
|
sqlmesh/cicd/config.py,sha256=mpgkisSBBovlNrNZir2unT8Wes6b38RW2UsU_o4e8vY,109
|
|
8
8
|
sqlmesh/cli/__init__.py,sha256=MAXAyO7isbyM-PaSdFjkJNcjn32WjOl0XzxT5gvp_vo,1690
|
|
9
|
-
sqlmesh/cli/main.py,sha256=
|
|
9
|
+
sqlmesh/cli/main.py,sha256=AJHHkF1PlCSrIJqYuzQP-dSE4nqu_iwnIgEvgoZeDcs,34845
|
|
10
10
|
sqlmesh/cli/options.py,sha256=8qEGWivk4urGikpEmaU9T8WsyaZtjCpmW4Ed25iQ73I,2543
|
|
11
11
|
sqlmesh/cli/project_init.py,sha256=OsIj2wuze3hG0XxSyJfYJZsBDE6hKa6Hc2T2p4gXD1Y,18026
|
|
12
12
|
sqlmesh/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -24,7 +24,7 @@ sqlmesh/core/macros.py,sha256=rkklwVnUEmEro4wpdel289mKhaS3x5_SPZrkYZt3Q9E,63173
|
|
|
24
24
|
sqlmesh/core/node.py,sha256=2ejDwH1whl_ic1CRzX16Be-FQrosAf8pdyWb7oPzU6M,19895
|
|
25
25
|
sqlmesh/core/notification_target.py,sha256=PPGoDrgbRKxr27vJEu03XqNTQLYTw0ZF_b0yAapxGeI,16158
|
|
26
26
|
sqlmesh/core/reference.py,sha256=k7OSkLqTjPR8WJjNeFj0xAJ297nZUMgb_iTVwKRRKjc,4875
|
|
27
|
-
sqlmesh/core/renderer.py,sha256=
|
|
27
|
+
sqlmesh/core/renderer.py,sha256=GEPJUaBI4S0vo6IV0OOBSfLdgXe51RuG9-Vnlzscpxc,28851
|
|
28
28
|
sqlmesh/core/scheduler.py,sha256=seYDDtowupyyK_xgjqDLZ5CACyktKCojmAjj97Tg0ts,50629
|
|
29
29
|
sqlmesh/core/schema_diff.py,sha256=qM4uxOBtrAqx8_5JU0ERicMT-byLD4xUUv4FrQw92js,33934
|
|
30
30
|
sqlmesh/core/schema_loader.py,sha256=_Pq2RSw91uthqv1vNi_eHmLlzhtGz_APMJ0wAJZYuvk,3677
|
|
@@ -88,7 +88,7 @@ sqlmesh/core/metric/definition.py,sha256=Yd5aVgsZCDPJ43aGP7WqtzZOuuSUtB8uJGVA6Jw
|
|
|
88
88
|
sqlmesh/core/metric/rewriter.py,sha256=ioLTqAEPytWxbtHgEnZUPjtI_nPlri5QMRXinSmvZBQ,7327
|
|
89
89
|
sqlmesh/core/model/__init__.py,sha256=C8GRZ53xuXEA9hQv3BQS9pNNyd9rZ06R_B96UYGhDu4,1644
|
|
90
90
|
sqlmesh/core/model/cache.py,sha256=csun0RJguHzKX6-qITcOs4fVP4f8_Ts8qiUVV4sHY6Q,7869
|
|
91
|
-
sqlmesh/core/model/common.py,sha256=
|
|
91
|
+
sqlmesh/core/model/common.py,sha256=tRiq6gn8OH7BBeYW1oLTZN7lXfoBP703pfZgUpOH1NM,27735
|
|
92
92
|
sqlmesh/core/model/decorator.py,sha256=bL-JuNrdBAikZSjVxnXqeB9i0e9qC7jm7yLjwiZ38aU,9470
|
|
93
93
|
sqlmesh/core/model/definition.py,sha256=szyb_8nlOjm3YfbSrJD1SG6fuOGzqAxxrHYgVUD_rWw,117746
|
|
94
94
|
sqlmesh/core/model/kind.py,sha256=qJdiin09Q0neRFudNnLsDNCvbqD3EHAoK-WCvX-eUJs,40071
|
|
@@ -96,7 +96,7 @@ sqlmesh/core/model/meta.py,sha256=ELjprp6rl7dW9a7rs9eyQXScbDImInq35SyasiAriIk,24
|
|
|
96
96
|
sqlmesh/core/model/schema.py,sha256=_HMYfzK9wWXh7_CQDIIGnuQUD4aiX3o5D2cRp2sERzc,3387
|
|
97
97
|
sqlmesh/core/model/seed.py,sha256=a0M-1zY1gOkN5ph2GQyataEdBSCtq50YjeFk2LyvInI,5058
|
|
98
98
|
sqlmesh/core/plan/__init__.py,sha256=NKSvM7ZBVjw9ho3J65M1wFvG3KURB8PJ0FHHLmtSF44,443
|
|
99
|
-
sqlmesh/core/plan/builder.py,sha256=
|
|
99
|
+
sqlmesh/core/plan/builder.py,sha256=8uFVLjbrDVSAufwWvk_4mXmq_mzM7IS-OUvWP-y6Zr0,44242
|
|
100
100
|
sqlmesh/core/plan/common.py,sha256=GEu7eXIfX7MM7d8-1znYlVnF1UbRZkBSDXLoMbjsieY,10716
|
|
101
101
|
sqlmesh/core/plan/definition.py,sha256=tfddMilgk4CZN2SljFotFlttsT9nBQ50kwiNDRonxXw,15282
|
|
102
102
|
sqlmesh/core/plan/evaluator.py,sha256=twO9cHznTNAtPNC4IZcw9uhCxGl2yIywfePfmJKkymE,21114
|
|
@@ -106,7 +106,7 @@ sqlmesh/core/snapshot/__init__.py,sha256=NUhvP-glftOWwxONK79Bud93yNQJv8ApBUjkV35
|
|
|
106
106
|
sqlmesh/core/snapshot/cache.py,sha256=bgqCR2hyf6r2A_8QP1EnXFK25gDX37-Zg0YeMuETWxg,3934
|
|
107
107
|
sqlmesh/core/snapshot/categorizer.py,sha256=iNBEqK2KIyTAYURlB9KLfyKCpXN7vjxSqA7QjFa7e5c,2418
|
|
108
108
|
sqlmesh/core/snapshot/definition.py,sha256=ZjjeiFLglG6zOusjzgaKOWSr_X_77JlMmvHK0C8d6Ms,96692
|
|
109
|
-
sqlmesh/core/snapshot/evaluator.py,sha256=
|
|
109
|
+
sqlmesh/core/snapshot/evaluator.py,sha256=PJmqSTkoRGip2OSKuN0gUPolpaCXtO4QYYPE_CqOKhI,133150
|
|
110
110
|
sqlmesh/core/snapshot/execution_tracker.py,sha256=Ss1oYgH28Fy1mQ4HriX-luE9MG0eLdecrE1SssUveQI,3651
|
|
111
111
|
sqlmesh/core/state_sync/__init__.py,sha256=vcm3p_e0scP_ZxOs3XPKPG3uPsaxrK_4pnNj0QueDwQ,779
|
|
112
112
|
sqlmesh/core/state_sync/base.py,sha256=nK5tq5cIT5x5NrTaTurCRX18bSHnhSjEWG20tVqlkZc,19340
|
|
@@ -117,7 +117,7 @@ sqlmesh/core/state_sync/db/__init__.py,sha256=jGCqKYB7npq4eh6H2LyfBAJWdOP-IFu0DC
|
|
|
117
117
|
sqlmesh/core/state_sync/db/environment.py,sha256=Q1oOCJniZ75WpOG67fbehDVmzR4stJhW8FDW7C5hg8I,13821
|
|
118
118
|
sqlmesh/core/state_sync/db/facade.py,sha256=O_Y1hcxhysBcFHfM8tJz1Pm0DZh3mXFz26tAEQX28g8,25720
|
|
119
119
|
sqlmesh/core/state_sync/db/interval.py,sha256=YuzGB7QAgKUcc9A5d4APmj8CtFXx9x0WYXgVwSKaRnc,18925
|
|
120
|
-
sqlmesh/core/state_sync/db/migrator.py,sha256=
|
|
120
|
+
sqlmesh/core/state_sync/db/migrator.py,sha256=hW84CJJkq3Ga90uQ3h34xfMHNOu9cHI1_WqNOEt4F88,18955
|
|
121
121
|
sqlmesh/core/state_sync/db/snapshot.py,sha256=NeFPCRF3pAgna5XVrUmNH1R_J5B36gDhjXjUMSlZKK0,29183
|
|
122
122
|
sqlmesh/core/state_sync/db/utils.py,sha256=8KjRmOjP5CLuSRkYBUE2k34V-UYB0iSyuO0rWBQ_5pY,4218
|
|
123
123
|
sqlmesh/core/state_sync/db/version.py,sha256=q5VDIIvY-585vTbvqPalU0N4qjG6RKs4gr8a51R-_UE,2257
|
|
@@ -131,7 +131,7 @@ sqlmesh/dbt/__init__.py,sha256=KUv-lW5sG9D2ceXAIzA4MLcjyhzq3E-7qJP4P_PH2EU,144
|
|
|
131
131
|
sqlmesh/dbt/adapter.py,sha256=z-tFIj3rpVvdBr3y8l40FU531-TQ5H2ctLmjwzMBxwk,21321
|
|
132
132
|
sqlmesh/dbt/basemodel.py,sha256=oUr_Em-TjQbpYZS5gtvMA65JRTdnZM46NO9MWvLBLzQ,14860
|
|
133
133
|
sqlmesh/dbt/builtin.py,sha256=hJwLdVs3Qe_AFUIa0ZMnktblpdkGGaq20nFUJEf3B_I,19752
|
|
134
|
-
sqlmesh/dbt/column.py,sha256=
|
|
134
|
+
sqlmesh/dbt/column.py,sha256=bwApAXorOhxhnQSK4uHlcRCFfx0yzGrqqsMv6fWMkc4,2446
|
|
135
135
|
sqlmesh/dbt/common.py,sha256=RmabUrj2A25G1vy7iV-15NJ481L5qHAQnq-JVNYEQr0,8653
|
|
136
136
|
sqlmesh/dbt/context.py,sha256=JDfSkVBBV2Xi4nDOwWipVHJRll3ioEmvh7gBglPVvqM,11074
|
|
137
137
|
sqlmesh/dbt/loader.py,sha256=ZTpPFnXuf4hQ8Z7Z6oMzxqN2wMMxsQqhm2x-8a5R1AA,19269
|
|
@@ -205,7 +205,7 @@ sqlmesh/migrations/v0088_warn_about_variable_python_env_diffs.py,sha256=ipW3zmdJ
|
|
|
205
205
|
sqlmesh/migrations/v0089_add_virtual_environment_mode.py,sha256=IwM_wSqzcZfJ2jua6h-4Sx2PcALhE0czs2pXzDnujYg,221
|
|
206
206
|
sqlmesh/migrations/v0090_add_forward_only_column.py,sha256=hM04jage95hXamjC8ZEeTCR_tivvI8FCGpCzHjyJ5iU,3137
|
|
207
207
|
sqlmesh/migrations/v0091_on_additive_change.py,sha256=QpkWpntj3mb-jX4liH_UAKlk1kNf6s23YTd8S2pkVHI,226
|
|
208
|
-
sqlmesh/migrations/v0092_warn_about_dbt_data_type_diff.py,sha256=
|
|
208
|
+
sqlmesh/migrations/v0092_warn_about_dbt_data_type_diff.py,sha256=cdk2VPJ6TXsh-bh6gDQNTZGze0vcduVT40n7s12ipW8,1889
|
|
209
209
|
sqlmesh/migrations/v0093_use_raw_sql_in_fingerprint.py,sha256=mPaXBleWuZXXf0Lq-lmPGq3jONNr0MWkuSu1XkWFYfk,221
|
|
210
210
|
sqlmesh/migrations/v0094_add_dev_version_and_fingerprint_columns.py,sha256=CYMkGHXnkGUBKelI5jXWdamArHGNohCr4-8WNR7iq1A,3761
|
|
211
211
|
sqlmesh/migrations/v0095_warn_about_dbt_raw_sql_diff.py,sha256=hiDKWEt3rrSwhTr3j_kkkMvVfe9Yowsr2l9gYXsoN08,2021
|
|
@@ -238,7 +238,7 @@ sqlmesh/utils/pydantic.py,sha256=-yppkVlw6iSBaSiKjbe7OChxL-u3urOS4-KCjJEgsRU,120
|
|
|
238
238
|
sqlmesh/utils/rich.py,sha256=cwQ5nJ6sgz64xHtoh6_ec7ReV5YpsOGhMtUJnwoRfEI,3549
|
|
239
239
|
sqlmesh/utils/windows.py,sha256=0F9RdpuuCoG5NiEDXvWlAGCiJ-59OjSAmgFF5wW05aY,1133
|
|
240
240
|
sqlmesh/utils/yaml.py,sha256=KFBd7hsKNRTtRudGR7d410qUYffQv0EWRcDM8hVNNZg,3025
|
|
241
|
-
sqlmesh-0.231.2.
|
|
241
|
+
sqlmesh-0.231.2.dev5.dist-info/licenses/LICENSE,sha256=nyrUL1w6Rp53AsZVe3oIvFsrMcUbKkPK1CJ-tZntGe4,11360
|
|
242
242
|
sqlmesh_dbt/__init__.py,sha256=awYS5y5mz-1NUmx6i5h5NSTJ7tidRl9NC0FAnFWSF6U,350
|
|
243
243
|
sqlmesh_dbt/cli.py,sha256=p9foHjAW9ni7BTOJ2loynk47M0Sf43QIJZRggOzF5tc,6351
|
|
244
244
|
sqlmesh_dbt/console.py,sha256=RwWLYnEZHzn9Xp-e2gbZvkdKbWbBLN146geI84mJitg,1132
|
|
@@ -363,8 +363,8 @@ web/server/api/endpoints/models.py,sha256=kwj0s7uve3iZSMfmjkoPVMFMeY1sD0peTeyrWf
|
|
|
363
363
|
web/server/api/endpoints/modules.py,sha256=8hqqgonGay_mJmpCw0IdbjsPhWlQH2VLdKAqha-myac,468
|
|
364
364
|
web/server/api/endpoints/plan.py,sha256=bbbY50W_2MsZSTxOHWMKz0tbIm75nsRSlPy8GI2fg9Q,9306
|
|
365
365
|
web/server/api/endpoints/table_diff.py,sha256=8XTwgOh6QBbNy_hTM1JuHgRjbnie-pGPrphiW-FNLjQ,6058
|
|
366
|
-
sqlmesh-0.231.2.
|
|
367
|
-
sqlmesh-0.231.2.
|
|
368
|
-
sqlmesh-0.231.2.
|
|
369
|
-
sqlmesh-0.231.2.
|
|
370
|
-
sqlmesh-0.231.2.
|
|
366
|
+
sqlmesh-0.231.2.dev5.dist-info/METADATA,sha256=fgKepQVGWWvnUOJNSrIRwX9FG--wbBkOjgchYAgTrnU,26782
|
|
367
|
+
sqlmesh-0.231.2.dev5.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
368
|
+
sqlmesh-0.231.2.dev5.dist-info/entry_points.txt,sha256=sHAf6tQczIM8xZoduN4qaUjV7QEPVUUW_LCT8EDUMv4,155
|
|
369
|
+
sqlmesh-0.231.2.dev5.dist-info/top_level.txt,sha256=RQ-33FPe2IgL0rgossAfJkCRtqslz9b7wFARqiWLC5Q,24
|
|
370
|
+
sqlmesh-0.231.2.dev5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|