feldera 0.49.0__tar.gz → 0.50.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.

Files changed (29) hide show
  1. {feldera-0.49.0 → feldera-0.50.0}/PKG-INFO +1 -1
  2. {feldera-0.49.0 → feldera-0.50.0}/feldera.egg-info/PKG-INFO +1 -1
  3. {feldera-0.49.0 → feldera-0.50.0}/pyproject.toml +1 -1
  4. {feldera-0.49.0 → feldera-0.50.0}/tests/test_udf.py +10 -10
  5. {feldera-0.49.0 → feldera-0.50.0}/README.md +0 -0
  6. {feldera-0.49.0 → feldera-0.50.0}/feldera/__init__.py +0 -0
  7. {feldera-0.49.0 → feldera-0.50.0}/feldera/_callback_runner.py +0 -0
  8. {feldera-0.49.0 → feldera-0.50.0}/feldera/_helpers.py +0 -0
  9. {feldera-0.49.0 → feldera-0.50.0}/feldera/enums.py +0 -0
  10. {feldera-0.49.0 → feldera-0.50.0}/feldera/output_handler.py +0 -0
  11. {feldera-0.49.0 → feldera-0.50.0}/feldera/pipeline.py +0 -0
  12. {feldera-0.49.0 → feldera-0.50.0}/feldera/pipeline_builder.py +0 -0
  13. {feldera-0.49.0 → feldera-0.50.0}/feldera/rest/__init__.py +0 -0
  14. {feldera-0.49.0 → feldera-0.50.0}/feldera/rest/_httprequests.py +0 -0
  15. {feldera-0.49.0 → feldera-0.50.0}/feldera/rest/config.py +0 -0
  16. {feldera-0.49.0 → feldera-0.50.0}/feldera/rest/errors.py +0 -0
  17. {feldera-0.49.0 → feldera-0.50.0}/feldera/rest/feldera_client.py +0 -0
  18. {feldera-0.49.0 → feldera-0.50.0}/feldera/rest/pipeline.py +0 -0
  19. {feldera-0.49.0 → feldera-0.50.0}/feldera/rest/sql_table.py +0 -0
  20. {feldera-0.49.0 → feldera-0.50.0}/feldera/rest/sql_view.py +0 -0
  21. {feldera-0.49.0 → feldera-0.50.0}/feldera/runtime_config.py +0 -0
  22. {feldera-0.49.0 → feldera-0.50.0}/feldera.egg-info/SOURCES.txt +0 -0
  23. {feldera-0.49.0 → feldera-0.50.0}/feldera.egg-info/dependency_links.txt +0 -0
  24. {feldera-0.49.0 → feldera-0.50.0}/feldera.egg-info/requires.txt +0 -0
  25. {feldera-0.49.0 → feldera-0.50.0}/feldera.egg-info/top_level.txt +0 -0
  26. {feldera-0.49.0 → feldera-0.50.0}/setup.cfg +0 -0
  27. {feldera-0.49.0 → feldera-0.50.0}/tests/test_pipeline.py +0 -0
  28. {feldera-0.49.0 → feldera-0.50.0}/tests/test_pipeline_builder.py +0 -0
  29. {feldera-0.49.0 → feldera-0.50.0}/tests/test_variant.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: feldera
3
- Version: 0.49.0
3
+ Version: 0.50.0
4
4
  Summary: The feldera python client
5
5
  Author-email: Abhinav <abhinav.gyawali@feldera.com>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: feldera
3
- Version: 0.49.0
3
+ Version: 0.50.0
4
4
  Summary: The feldera python client
5
5
  Author-email: Abhinav <abhinav.gyawali@feldera.com>
6
6
  License: MIT
@@ -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.49.0"
9
+ version = "0.50.0"
10
10
  license = { text = "MIT" }
11
11
  requires-python = ">=3.10"
12
12
  authors = [
@@ -82,8 +82,8 @@ CREATE FUNCTION ndec2ndec(i DECIMAL(7, 2) NOT NULL) RETURNS DECIMAL(7, 2) NOT NU
82
82
  CREATE FUNCTION str2str(i VARCHAR) RETURNS VARCHAR;
83
83
  CREATE FUNCTION nstr2nstr(i VARCHAR NOT NULL) RETURNS VARCHAR NOT NULL;
84
84
 
85
- -- CREATE FUNCTION struct2struct(i my_struct) RETURNS my_struct;
86
- -- CREATE FUNCTION nstruct2nstruct(i my_struct NOT NULL) RETURNS my_struct NOT NULL;
85
+ CREATE FUNCTION struct2struct(i my_struct) RETURNS my_struct;
86
+ CREATE FUNCTION nstruct2nstruct(i my_struct NOT NULL) RETURNS my_struct NOT NULL;
87
87
 
88
88
  CREATE MATERIALIZED VIEW v AS
89
89
  SELECT
@@ -211,10 +211,10 @@ pub fn var2var(i: Option<Variant>) -> Result<Option<Variant>, Box<dyn std::error
211
211
  pub fn nvar2nvar(i: Variant) -> Result<Variant, Box<dyn std::error::Error>> {
212
212
  Ok(i)
213
213
  }
214
- pub fn dec2dec(i: Option<Decimal>) -> Result<Option<Decimal>, Box<dyn std::error::Error>> {
214
+ pub fn dec2dec(i: Option<SqlDecimal>) -> Result<Option<SqlDecimal>, Box<dyn std::error::Error>> {
215
215
  Ok(i)
216
216
  }
217
- pub fn ndec2ndec(i: Decimal) -> Result<Decimal, Box<dyn std::error::Error>> {
217
+ pub fn ndec2ndec(i: SqlDecimal) -> Result<SqlDecimal, Box<dyn std::error::Error>> {
218
218
  Ok(i)
219
219
  }
220
220
  pub fn str2str(i: Option<SqlString>) -> Result<Option<SqlString>, Box<dyn std::error::Error>> {
@@ -223,12 +223,12 @@ pub fn str2str(i: Option<SqlString>) -> Result<Option<SqlString>, Box<dyn std::e
223
223
  pub fn nstr2nstr(i: SqlString) -> Result<SqlString, Box<dyn std::error::Error>> {
224
224
  Ok(i)
225
225
  }
226
- // pub fn struct2struct(i: Option<struct_1>) -> Result<Option<struct_2>, Box<dyn std::error::Error>> {
227
- // Ok(i)
228
- // }
229
- // pub fn nstruct2nstruct(i: struct_0) -> Result<struct_0, Box<dyn std::error::Error>> {
230
- // Ok(i)
231
- // }
226
+ pub fn struct2struct(i: Option<Tup2<Option<i32>, Option<SqlString>>>) -> Result<Option<Tup2<Option<i32>, Option<SqlString>>>, Box<dyn std::error::Error>> {
227
+ Ok(i)
228
+ }
229
+ pub fn nstruct2nstruct(i: Tup2<Option<i32>, Option<SqlString>>) -> Result<Tup2<Option<i32>, Option<SqlString>>, Box<dyn std::error::Error>> {
230
+ Ok(i)
231
+ }
232
232
  """
233
233
 
234
234
  pipeline = PipelineBuilder(
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes