Skip to content

Commit

Permalink
Bump feldera from f6fb45f to 75679b9
Browse files Browse the repository at this point in the history
Bumps [feldera](https://github.com/feldera/feldera) from `f6fb45f` to `75679b9`.
- [Release notes](https://github.com/feldera/feldera/releases)
- [Commits](feldera/feldera@f6fb45f...75679b9)

---
updated-dependencies:
- dependency-name: feldera
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 20, 2024
1 parent 15bd659 commit 050db76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feldera
Submodule feldera updated 33 files
+2 −4 crates/dbsp/src/hash.rs
+2 −2 crates/pipeline-manager/src/db/types/program.rs
+16 −0 crates/sqllib/src/string.rs
+52 −0 crates/sqllib/src/timestamp.rs
+17 −0 docs/sql/string.md
+5 −2 python/feldera/pipeline.py
+19 −5 python/feldera/rest/feldera_client.py
+20 −10 python/tests/aggregate_tests/aggtst_base.py
+8 −0 python/tests/aggregate_tests/main.py
+132 −0 python/tests/aggregate_tests/test_atbl_interval.py
+39 −0 python/tests/aggregate_tests/test_interval_count.py
+100 −0 python/tests/aggregate_tests/test_interval_count_col.py
+262 −0 python/tests/aggregate_tests/test_interval_max.py
+79 −0 python/tests/aggregate_tests/test_varbinary_arr_agg.py
+39 −0 python/tests/aggregate_tests/test_varbinary_count.py
+58 −0 python/tests/aggregate_tests/test_varbinary_count_col.py
+31 −0 python/tests/aggregate_tests/test_varbinary_tbl.py
+59 −0 python/tests/test_pipeline_builder.py
+1 −1 python/uv.lock
+9 −0 sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/circuit/CircuitToString.java
+13 −5 sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/circuit/operator/DBSPNestedOperator.java
+1 −1 sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/DBSPCompiler.java
+18 −11 sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/backend/rust/ToRustVisitor.java
+7 −1 sql-to-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/frontend/ExpressionCompiler.java
+1 −1 ...p-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/visitors/outer/CircuitCloneVisitor.java
+4 −3 ...dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/visitors/outer/CircuitOptimizer.java
+1 −1 ...ler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/visitors/outer/OptimizeIncrementalVisitor.java
+32 −7 ...p-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/visitors/outer/RecursiveComponents.java
+9 −3 ...p-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/compiler/visitors/outer/RemoveViewOperators.java
+0 −4 ...-dbsp-compiler/SQL-compiler/src/main/java/org/dbsp/sqlCompiler/ir/expression/literal/DBSPStringLiteral.java
+84 −1 ...bsp-compiler/SQL-compiler/src/test/java/org/dbsp/sqlCompiler/compiler/sql/postgres/PostgresStringTests.java
+413 −0 ...to-dbsp-compiler/SQL-compiler/src/test/java/org/dbsp/sqlCompiler/compiler/sql/recursive/RecursiveTests.java
+112 −0 ...-dbsp-compiler/SQL-compiler/src/test/java/org/dbsp/sqlCompiler/compiler/sql/simple/TimeArithmeticTests.java

0 comments on commit 050db76

Please sign in to comment.