findly.unified-reporting-sdk 0.6.18__py3-none-any.whl → 0.6.19__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.
- findly/unified_reporting_sdk/data_sources/common/where_string_comparison.py +11 -0
- {findly_unified_reporting_sdk-0.6.18.dist-info → findly_unified_reporting_sdk-0.6.19.dist-info}/METADATA +1 -1
- {findly_unified_reporting_sdk-0.6.18.dist-info → findly_unified_reporting_sdk-0.6.19.dist-info}/RECORD +5 -5
- {findly_unified_reporting_sdk-0.6.18.dist-info → findly_unified_reporting_sdk-0.6.19.dist-info}/LICENSE +0 -0
- {findly_unified_reporting_sdk-0.6.18.dist-info → findly_unified_reporting_sdk-0.6.19.dist-info}/WHEEL +0 -0
|
@@ -25,6 +25,17 @@ def parse_where_columns_from_sql_query(
|
|
|
25
25
|
dialect: str,
|
|
26
26
|
where_clause_str: Optional[str] = None,
|
|
27
27
|
) -> Optional[List[WhereClauseInformation]]:
|
|
28
|
+
# Check if where_clause_str is effectively empty
|
|
29
|
+
if where_clause_str is None or not where_clause_str.strip():
|
|
30
|
+
LOGGER.info(
|
|
31
|
+
{
|
|
32
|
+
"msg": "empty_or_missing_where_clause",
|
|
33
|
+
"where_clause": where_clause_str,
|
|
34
|
+
"sql_query": sql_query,
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
return None
|
|
38
|
+
|
|
28
39
|
try:
|
|
29
40
|
where_clause_maybe: Optional[Expression] = parse_one(
|
|
30
41
|
sql=sql_query,
|
|
@@ -5,7 +5,7 @@ findly/unified_reporting_sdk/data_sources/common/__init__.py,sha256=47DEQpj8HBSa
|
|
|
5
5
|
findly/unified_reporting_sdk/data_sources/common/common_parser.py,sha256=OymaK3T9U10ZiIpMqwYQv3ukvCmBu9ALgxS5zQmKpLY,7897
|
|
6
6
|
findly/unified_reporting_sdk/data_sources/common/date_range_helper.py,sha256=z2L1YU1Mzbybkl1wZK_mXL9lKFfG6CEomvlTfADD_80,971
|
|
7
7
|
findly/unified_reporting_sdk/data_sources/common/reports_client.py,sha256=fCza94iwZz05QPr6B3mmsrvQQdymgD3CzMbvAYEOetw,3647
|
|
8
|
-
findly/unified_reporting_sdk/data_sources/common/where_string_comparison.py,sha256=
|
|
8
|
+
findly/unified_reporting_sdk/data_sources/common/where_string_comparison.py,sha256=1oIVCZF-E09WfraAvjr0vQ7NDTnao-6QPxjKRf-QMCU,6039
|
|
9
9
|
findly/unified_reporting_sdk/data_sources/fb_ads/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
findly/unified_reporting_sdk/data_sources/fb_ads/fb_ads_client.py,sha256=hVrxsbf0DLoTka5B7DACBbcMeVEh4PRU_s8WZ8nlvFY,21913
|
|
11
11
|
findly/unified_reporting_sdk/data_sources/fb_ads/fb_ads_query_args_parser.py,sha256=kM1ewN1bQqL_hTfbItkPGJenbwYeEpUXZEYnoTjTbDo,31949
|
|
@@ -28,7 +28,7 @@ findly/unified_reporting_sdk/protos/findly_semantic_layer_pb2.pyi,sha256=PmMDYAW
|
|
|
28
28
|
findly/unified_reporting_sdk/urs.py,sha256=8um_pLJNOu1FGd0IO7XlNBIFAvGYD2nXnxiHMjkraKs,2915
|
|
29
29
|
findly/unified_reporting_sdk/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
findly/unified_reporting_sdk/util/create_numeric_string_series.py,sha256=MmufpYatIhcVxA9e3H1dR1CrejXRnA8j4NNjJxfvBVA,457
|
|
31
|
-
findly_unified_reporting_sdk-0.6.
|
|
32
|
-
findly_unified_reporting_sdk-0.6.
|
|
33
|
-
findly_unified_reporting_sdk-0.6.
|
|
34
|
-
findly_unified_reporting_sdk-0.6.
|
|
31
|
+
findly_unified_reporting_sdk-0.6.19.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
32
|
+
findly_unified_reporting_sdk-0.6.19.dist-info/METADATA,sha256=rA_swUXPwV6dWr7xblMwPBGeu01V3_FI2iso9ekDhEc,3160
|
|
33
|
+
findly_unified_reporting_sdk-0.6.19.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
34
|
+
findly_unified_reporting_sdk-0.6.19.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|