Skip to content

Commit

Permalink
Merge branch 'main' into xxh/sink-decouple-
Browse files Browse the repository at this point in the history
  • Loading branch information
xxhZs authored Aug 26, 2024
2 parents 5b67a76 + 2af7a56 commit 2a6fca4
Show file tree
Hide file tree
Showing 6 changed files with 175 additions and 48 deletions.
152 changes: 111 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,9 @@ arrow-array-iceberg = { package = "arrow-array", version = "52" }
arrow-schema-iceberg = { package = "arrow-schema", version = "52" }
arrow-buffer-iceberg = { package = "arrow-buffer", version = "52" }
arrow-cast-iceberg = { package = "arrow-cast", version = "52" }
iceberg = { git = "https://github.com/apache/iceberg-rust.git", rev = "4440af69a354d9af56f239a6126a7f4b7945d58b" }
iceberg-catalog-rest = { git = "https://github.com/apache/iceberg-rust.git", rev = "4440af69a354d9af56f239a6126a7f4b7945d58b" }
iceberg = "0.3.0"
iceberg-catalog-rest = "0.3.0"
iceberg-catalog-glue = "0.3.0"
opendal = "0.47"
arrow-array = "50"
arrow-arith = "50"
Expand Down
4 changes: 4 additions & 0 deletions e2e_test/batch/basic/join.slt.part
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ create index i1 on t1(v1) include(v2);
statement ok
create index i2 on t2(v1) include(v3);

sleep 1s

query II
select * from i1 join i2 using(v1);
----
Expand Down Expand Up @@ -88,6 +90,8 @@ create table t(x int);
statement ok
create index i on t(x);

sleep 1s

statement ok
insert into t values (1),(2),(3),(4),(5);

Expand Down
Loading

0 comments on commit 2a6fca4

Please sign in to comment.