Skip to content

Commit

Permalink
Merge branch 'main' into xxh/fix-subscription-jdbc
Browse files Browse the repository at this point in the history
  • Loading branch information
xxhZs committed Jul 29, 2024
2 parents b2083cb + 0e69ede commit 338def2
Show file tree
Hide file tree
Showing 338 changed files with 10,649 additions and 5,238 deletions.
76 changes: 40 additions & 36 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ RisingWave is distributed under the Apache License (Version 2.0). Please refer t

## Contributing

Thanks for your interest in contributing to the project! Please refer to [RisingWave Developer Guide](https://risingwavelabs.github.io/risingwave/)for more information.
Thanks for your interest in contributing to the project! Please refer to [RisingWave Developer Guide](https://risingwavelabs.github.io/risingwave/) for more information.
2 changes: 1 addition & 1 deletion docker/dashboards/risingwave-dev-dashboard.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docker/dashboards/risingwave-user-dashboard.json

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions e2e_test/batch/aggregate/scalar_as_agg.slt.part
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
query T
select aggregate:array_sum(v) from (values (3), (2), (1)) as t(v);
----
6

query T
select aggregate:array_sort(v) from (values (3), (2), (1)) as t(v);
----
{1,2,3}
45 changes: 45 additions & 0 deletions e2e_test/batch/functions/trigonometric_funcs.slt.part
Original file line number Diff line number Diff line change
Expand Up @@ -659,3 +659,48 @@ query R
SELECT abs(abs(asind(-0.5) + 30)) < 1e-14
----
t

query R
SELECT abs(acosd(-1) - 180.0) < 1e-14
----
t

query R
SELECT abs(acosd(-0.75) - 138.59037789072914) < 1e-14
----
t

query R
SELECT abs(acosd(-0.5) - 120.0) < 1e-14
----
t

query R
SELECT abs(acosd(-0.25) - 104.47751218592992) < 1e-14
----
t

query R
SELECT abs(acosd(0) - 90.0) < 1e-14
----
t

query R
SELECT abs(acosd(0.25) - 75.52248781407008) < 1e-14
----
t

query R
SELECT abs(acosd(0.5) - 59.99999999999999) < 1e-14
----
t

query R
SELECT abs(acosd(0.75) - 41.40962210927086) < 1e-14
----
t

query R
SELECT abs(acosd(1) - 0.0) < 1e-14
----
t
Loading

0 comments on commit 338def2

Please sign in to comment.