feldera 0.144.0__tar.gz → 0.145.0__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.
Potentially problematic release.
This version of feldera might be problematic. Click here for more details.
- {feldera-0.144.0 → feldera-0.145.0}/PKG-INFO +1 -1
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/feldera_client.py +3 -2
- {feldera-0.144.0 → feldera-0.145.0}/feldera/testutils.py +2 -2
- {feldera-0.144.0 → feldera-0.145.0}/feldera.egg-info/PKG-INFO +1 -1
- {feldera-0.144.0 → feldera-0.145.0}/pyproject.toml +1 -1
- {feldera-0.144.0 → feldera-0.145.0}/README.md +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/__init__.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/_callback_runner.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/_helpers.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/enums.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/output_handler.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/pipeline.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/pipeline_builder.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/__init__.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/_helpers.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/_httprequests.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/config.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/errors.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/feldera_config.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/pipeline.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/sql_table.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/rest/sql_view.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/runtime_config.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/stats.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera/tests/test_datafusionize.py +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera.egg-info/SOURCES.txt +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera.egg-info/dependency_links.txt +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera.egg-info/requires.txt +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/feldera.egg-info/top_level.txt +0 -0
- {feldera-0.144.0 → feldera-0.145.0}/setup.cfg +0 -0
|
@@ -5,6 +5,7 @@ import time
|
|
|
5
5
|
import json
|
|
6
6
|
from decimal import Decimal
|
|
7
7
|
from typing import Generator, Mapping
|
|
8
|
+
from urllib.parse import quote
|
|
8
9
|
|
|
9
10
|
from feldera.rest.config import Config
|
|
10
11
|
from feldera.rest.feldera_config import FelderaConfig
|
|
@@ -750,7 +751,7 @@ Reason: The pipeline is in a STOPPED state due to the following error:
|
|
|
750
751
|
data = bytes(str(data), "utf-8")
|
|
751
752
|
|
|
752
753
|
resp = self.http.post(
|
|
753
|
-
path=f"/pipelines/{pipeline_name}/ingress/{table_name}",
|
|
754
|
+
path=f"/pipelines/{quote(pipeline_name, safe='')}/ingress/{quote(table_name, safe='')}",
|
|
754
755
|
params=params,
|
|
755
756
|
content_type=content_type,
|
|
756
757
|
body=data,
|
|
@@ -863,7 +864,7 @@ Reason: The pipeline is in a STOPPED state due to the following error:
|
|
|
863
864
|
table_name = f'"{table_name}"' if case_sensitive else table_name
|
|
864
865
|
|
|
865
866
|
resp = self.http.post(
|
|
866
|
-
path=f"/pipelines/{pipeline_name}/egress/{table_name}",
|
|
867
|
+
path=f"/pipelines/{quote(pipeline_name, safe='')}/egress/{quote(table_name, safe='')}",
|
|
867
868
|
params=params,
|
|
868
869
|
stream=True,
|
|
869
870
|
)
|
|
@@ -196,11 +196,11 @@ def validate_view(pipeline: Pipeline, view: ViewSpec):
|
|
|
196
196
|
|
|
197
197
|
if extra_rows:
|
|
198
198
|
log("Extra rows in Feldera output, but not in the ad hoc query output")
|
|
199
|
-
log(json.dumps(extra_rows))
|
|
199
|
+
log(json.dumps(extra_rows, default=str))
|
|
200
200
|
|
|
201
201
|
if missing_rows:
|
|
202
202
|
log("Extra rows in the ad hoc query output, but not in Feldera output")
|
|
203
|
-
log(json.dumps(missing_rows))
|
|
203
|
+
log(json.dumps(missing_rows, default=str))
|
|
204
204
|
except Exception as e:
|
|
205
205
|
log(f"Error querying view '{view.name}': {e}")
|
|
206
206
|
log(f"Ad-hoc Query: {view_query}")
|
|
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
|