run-cache 2.0.0__tar.gz → 2.0.1__tar.gz
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.
- {run_cache-2.0.0 → run_cache-2.0.1}/PKG-INFO +1 -1
- run_cache-2.0.1/src/dbt_run_cache/_version.py +1 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/cli/main.py +4 -1
- run_cache-2.0.0/src/dbt_run_cache/_version.py +0 -1
- {run_cache-2.0.0 → run_cache-2.0.1}/.gitignore +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/pyproject.toml +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/__init__.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/_typing.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/adapters/__init__.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/adapters/base.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/adapters/bigquery.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/adapters/clock.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/adapters/common.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/adapters/databricks.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/adapters/postgres.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/adapters/snowflake.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/auth/__init__.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/auth/grpc.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/auth/oauth_clients.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/auth/sso.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/auth/sso_server.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/auth/utils.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/cli/__init__.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/cli/auth.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/cli/explainer.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/config.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/decision_logger.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/dev_cloner.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/dispatcher.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/errors.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/events.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/git.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/grpc/__init__.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/grpc/client.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/grpc/interceptors.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/plugin.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/profiles.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/relation.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/run_cache.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/runner.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/selector.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/session.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/system_info.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/utils.py +0 -0
- {run_cache-2.0.0 → run_cache-2.0.1}/src/dbt_run_cache/version.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.0.1"
|
|
@@ -14,9 +14,12 @@ from dbt_run_cache.cli.explainer import Explainer
|
|
|
14
14
|
from dbt_run_cache.grpc.client import QueryCacheGrpcClient
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
@click.group()
|
|
17
|
+
@click.group(invoke_without_command=True)
|
|
18
18
|
@click.pass_context
|
|
19
19
|
def cli(ctx: click.Context) -> None:
|
|
20
|
+
if ctx.invoked_subcommand is None:
|
|
21
|
+
click.echo(ctx.get_help())
|
|
22
|
+
ctx.exit(0)
|
|
20
23
|
ctx.ensure_object(dict)
|
|
21
24
|
# TODO: Ideally use dbt to get the project root and log path
|
|
22
25
|
# alternative is to parse the dbt project yml file to get log path
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.0.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|