feldera 0.38.0__tar.gz → 0.40.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.38.0 → feldera-0.40.0}/PKG-INFO +1 -1
- {feldera-0.38.0 → feldera-0.40.0}/feldera/rest/feldera_client.py +2 -2
- {feldera-0.38.0 → feldera-0.40.0}/feldera/rest/pipeline.py +1 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera.egg-info/PKG-INFO +1 -1
- {feldera-0.38.0 → feldera-0.40.0}/pyproject.toml +10 -1
- {feldera-0.38.0 → feldera-0.40.0}/tests/test_pipeline.py +1 -0
- {feldera-0.38.0 → feldera-0.40.0}/README.md +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/__init__.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/_callback_runner.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/_helpers.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/enums.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/output_handler.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/pipeline.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/pipeline_builder.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/rest/__init__.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/rest/_httprequests.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/rest/config.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/rest/errors.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/rest/sql_table.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/rest/sql_view.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera/runtime_config.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera.egg-info/SOURCES.txt +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera.egg-info/dependency_links.txt +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera.egg-info/requires.txt +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/feldera.egg-info/top_level.txt +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/setup.cfg +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/tests/test_pipeline_builder.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/tests/test_udf.py +0 -0
- {feldera-0.38.0 → feldera-0.40.0}/tests/test_variant.py +0 -0
|
@@ -103,8 +103,8 @@ class FelderaClient:
|
|
|
103
103
|
return p
|
|
104
104
|
elif status not in wait:
|
|
105
105
|
# error handling for SQL compilation errors
|
|
106
|
-
if
|
|
107
|
-
sql_errors =
|
|
106
|
+
if status == "SqlError":
|
|
107
|
+
sql_errors = p.program_error["sql_compilation"]["messages"]
|
|
108
108
|
if sql_errors:
|
|
109
109
|
err_msg = f"Pipeline {name} failed to compile:\n"
|
|
110
110
|
for sql_error in sql_errors:
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
name = "feldera"
|
|
7
7
|
readme = "README.md"
|
|
8
8
|
description = "The feldera python client"
|
|
9
|
-
version = "0.
|
|
9
|
+
version = "0.40.0"
|
|
10
10
|
license = { text = "MIT" }
|
|
11
11
|
requires-python = ">=3.10"
|
|
12
12
|
authors = [
|
|
@@ -35,3 +35,12 @@ Homepage = "https://www.feldera.com"
|
|
|
35
35
|
Documentation = "https://docs.feldera.com/python"
|
|
36
36
|
Repository = "https://github.com/feldera/feldera"
|
|
37
37
|
Issues = "https://github.com/feldera/feldera/issues"
|
|
38
|
+
|
|
39
|
+
[tool.uv]
|
|
40
|
+
dev-dependencies = [
|
|
41
|
+
"kafka-python-ng==2.2.2",
|
|
42
|
+
"pytest-timeout>=2.3.1",
|
|
43
|
+
"pytest>=8.3.5",
|
|
44
|
+
"sphinx-rtd-theme==2.0.0",
|
|
45
|
+
"sphinx==7.3.7",
|
|
46
|
+
]
|
|
@@ -15,6 +15,7 @@ class TestPipeline(unittest.TestCase):
|
|
|
15
15
|
def test_delete_all_pipelines(self):
|
|
16
16
|
pipelines = TEST_CLIENT.pipelines()
|
|
17
17
|
for pipeline in pipelines:
|
|
18
|
+
TEST_CLIENT.shutdown_pipeline(pipeline.name)
|
|
18
19
|
TEST_CLIENT.delete_pipeline(pipeline.name)
|
|
19
20
|
|
|
20
21
|
def test_create_pipeline(
|
|
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
|