Skip to content

Commit

Permalink
Merge branch 'main' into dylan/support_iceberg_scan_executor
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzl25 authored Feb 1, 2024
2 parents 5e4a47a + 6b3a319 commit 11fdfcd
Show file tree
Hide file tree
Showing 104 changed files with 5,081 additions and 1,788 deletions.
19 changes: 12 additions & 7 deletions Cargo.lock

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

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ tonic = { package = "madsim-tonic", version = "0.4.1" }
tonic-build = { package = "madsim-tonic-build", version = "0.4.2" }
otlp-embedded = { git = "https://github.com/risingwavelabs/otlp-embedded", rev = "58c1f003484449d7c6dd693b348bf19dd44889cb" }
prost = { version = "0.12" }
icelake = { git = "https://github.com/icelake-io/icelake", rev = "3f61f900d6914d4a28c00c2af6374a4dda6d95d4", features = [
icelake = { git = "https://github.com/icelake-io/icelake", rev = "56943d203464d32701c20d74b278b6b3ef2eefc7", features = [
"prometheus",
] }
arrow-array = "50"
Expand Down Expand Up @@ -282,8 +282,6 @@ tokio-postgres = { git = "https://github.com/madsim-rs/rust-postgres.git", rev =
futures-timer = { git = "https://github.com/madsim-rs/futures-timer.git", rev = "05b33b4" }
# patch: unlimit 4MB message size for grpc client
etcd-client = { git = "https://github.com/risingwavelabs/etcd-client.git", rev = "4e84d40" }
# need binding on aarch64-unknown-linux-gnu, waiting for new release
rquickjs-sys = { git = "https://github.com/DelSkayn/rquickjs.git", rev = "60696e8" }

[workspace.metadata.dylint]
libraries = [{ path = "./lints" }]
7 changes: 7 additions & 0 deletions ci/scripts/regress-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ dpkg-reconfigure --frontend=noninteractive locales
# All the above is required because otherwise psql would throw some warning
# that goes into the output file and thus diverges from the expected output file.
export PGPASSWORD='postgres';

# Load extensions. This shall only be done once per database, so not part of test runner.
psql -h db -p 5432 -d postgres -U postgres \
-c 'create extension pgcrypto;' \
-c 'create extension hstore;' \
-c 'create extension tablefunc;'

RUST_BACKTRACE=1 target/debug/risingwave_regress_test --host db \
-p 5432 \
-u postgres \
Expand Down
2 changes: 1 addition & 1 deletion dashboard/.node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.7.0
v20.11.0
1 change: 1 addition & 0 deletions dashboard/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: 'export',
trailingSlash: true,
}

Expand Down
Loading

0 comments on commit 11fdfcd

Please sign in to comment.