quollio-core 0.4.2__py3-none-any.whl → 0.4.3__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.
quollio_core/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  """Quollio Core"""
2
2
 
3
- __version__ = "0.4.2"
3
+ __version__ = "0.4.3"
4
4
  __author__ = "Quollio Technologies, Inc"
@@ -1,4 +1,4 @@
1
1
  packages:
2
2
  - package: dbt-labs/dbt_utils
3
3
  version: 1.1.1
4
- sha1_hash: 23451c207c1d4dd71b5925f12a5cd66f2ebb2b3b
4
+ sha1_hash: a158c48c59c2bb7d729d2a4e215aabe5bb4f3353
quollio_core/redshift.py CHANGED
@@ -49,12 +49,12 @@ def build_view(
49
49
  profile_dir=template_path,
50
50
  options=["--no-use-colors", "--log-level", log_level, "--vars", options],
51
51
  )
52
-
53
52
  run_options = ["--no-use-colors", "--log-level", log_level, "--vars", options]
54
- if target_tables is not None:
55
- if "quollio_stats_columns" in target_tables:
56
- target_tables.append("quollio_stats_profiling_columns")
57
- target_tables_str = " ".join(target_tables)
53
+ target_tables_list = target_tables.split()
54
+ if target_tables_list is not None:
55
+ if "quollio_stats_columns" in target_tables_list:
56
+ target_tables_list.append("quollio_stats_profiling_columns")
57
+ target_tables_str = " ".join(target_tables_list)
58
58
  run_options.append("--select")
59
59
  run_options.append(target_tables_str)
60
60
 
quollio_core/snowflake.py CHANGED
@@ -50,10 +50,11 @@ def build_view(
50
50
  options=["--no-use-colors", "--log-level", log_level, "--vars", options],
51
51
  )
52
52
  run_options = ["--no-use-colors", "--log-level", log_level, "--vars", options]
53
- if target_tables is not None:
54
- if "quollio_stats_columns" in target_tables:
55
- target_tables.append("quollio_stats_profiling_columns")
56
- target_tables_str = " ".join(target_tables)
53
+ target_tables_list = target_tables.split()
54
+ if target_tables_list is not None:
55
+ if "quollio_stats_columns" in target_tables_list:
56
+ target_tables_list.append("quollio_stats_profiling_columns")
57
+ target_tables_str = " ".join(target_tables_list)
57
58
  run_options.append("--select")
58
59
  run_options.append(target_tables_str)
59
60
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: quollio-core
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: Quollio Core
5
5
  Author-email: quollio-dev <qt.dev@quollio.com>
6
6
  Maintainer-email: RyoAriyama <ryo.arym@gmail.com>, tharuta <35373297+TakumiHaruta@users.noreply.github.com>
@@ -1,6 +1,6 @@
1
- quollio_core/__init__.py,sha256=i-7XGBLuLhFSzbW8WUNkPOegGOkJ1HT-Wvyp_dmdXSA,83
2
- quollio_core/redshift.py,sha256=o9KVSpxojuJfUAlD2md4RxhSJQYI3nOI_5wmLJY_RXY,10168
3
- quollio_core/snowflake.py,sha256=8IMbdTjCDBIiS_GF8APWRTVWNj6EM3ZT8MRN12T-1v0,10266
1
+ quollio_core/__init__.py,sha256=v7qeULEwxg6wNqWICrvNSrkxgZTWbgvhU4C6DUBvsVw,83
2
+ quollio_core/redshift.py,sha256=81cFHWzTHgO7u6wpW32w1dsvqttVRxpkhj-n7VL0Blo,10234
3
+ quollio_core/snowflake.py,sha256=VtslGFeCWpLotGk2RE9JTLRFP3rEm0JBG08Gd3oGChY,10333
4
4
  quollio_core/dbt_projects/redshift/README.md,sha256=55nDkX5uQXWmawpQbgG1hbyn64j_CegDBQddQ2C85C8,571
5
5
  quollio_core/dbt_projects/redshift/dbt_project.yml,sha256=WVCmT-2usdGSm6EBM6MCdzEeEFwv9ANsyknreoNXgBc,405
6
6
  quollio_core/dbt_projects/redshift/package-lock.yml,sha256=1N71QqV5p07pG5JVP73nSkz-cndl6UtjYLfmF0KrVsk,109
@@ -24,7 +24,7 @@ quollio_core/dbt_projects/redshift/seeds/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCe
24
24
  quollio_core/dbt_projects/redshift/snapshots/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  quollio_core/dbt_projects/snowflake/README.md,sha256=55nDkX5uQXWmawpQbgG1hbyn64j_CegDBQddQ2C85C8,571
26
26
  quollio_core/dbt_projects/snowflake/dbt_project.yml,sha256=LN5NDOyakQjIK99IogQX4Whh_1zmqUfD2gqDU9JR3As,407
27
- quollio_core/dbt_projects/snowflake/package-lock.yml,sha256=1N71QqV5p07pG5JVP73nSkz-cndl6UtjYLfmF0KrVsk,109
27
+ quollio_core/dbt_projects/snowflake/package-lock.yml,sha256=Gef3zDCLF41j_FL-_h3sIZOUVj6j7nTTvxXrQPLcBP0,109
28
28
  quollio_core/dbt_projects/snowflake/packages.yml,sha256=p9Bl2C44gdC6iYTUkz_15yq3xahSJf2IA3WOXLF_ahA,61
29
29
  quollio_core/dbt_projects/snowflake/analyses/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
30
  quollio_core/dbt_projects/snowflake/macros/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -57,7 +57,7 @@ quollio_core/repository/dbt.py,sha256=HXqW_xa4xYPh9CnKkg4L1gwG3SGjj2BAYoWgzWMFU4
57
57
  quollio_core/repository/qdc.py,sha256=VCmzAUvjLemw1os5TaPtfBFkMCOMuPeftjZmUPhFj2Y,4702
58
58
  quollio_core/repository/redshift.py,sha256=UVHIpYzDQ2AbBTAGa8DgmEenG0NZsHfYroR1MmEPQGA,2991
59
59
  quollio_core/repository/snowflake.py,sha256=1YVMDfb9euJKvikv1pk_IxVF6SVsiemSvZ-WMTSbY7E,1874
60
- quollio_core-0.4.2.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
61
- quollio_core-0.4.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
62
- quollio_core-0.4.2.dist-info/METADATA,sha256=8sJWD_ZwFOlUULvuonEWKmtDk8FO1LdXpu624KmpWPk,6400
63
- quollio_core-0.4.2.dist-info/RECORD,,
60
+ quollio_core-0.4.3.dist-info/LICENSE,sha256=V8j_M8nAz8PvAOZQocyRDX7keai8UJ9skgmnwqETmdY,34520
61
+ quollio_core-0.4.3.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
62
+ quollio_core-0.4.3.dist-info/METADATA,sha256=ePyyL6UzINeA26hX-tOQ-uAKyyHmJNKIwe3nOwJT3iE,6400
63
+ quollio_core-0.4.3.dist-info/RECORD,,