You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2024-07-27T01:44:17.805588Z INFO sqllogictest::system_command: system command executed command="psql -c \"\n DROP TABLE IF EXISTS shipments1;\n CREATE TABLE shipments1 (\n shipment_id SERIAL NOT NULL PRIMARY KEY,\n order_id SERIAL NOT NULL,\n origin VARCHAR(255) NOT NULL,\n destination VARCHAR(255) NOT NULL,\n is_arrived BOOLEAN NOT NULL\n );\n ALTER SEQUENCE public.shipments1_shipment_id_seq RESTART WITH 1001;\n INSERT INTO shipments1\n VALUES (default,10001,'Beijing','Shanghai',false),\n (default,10002,'Hangzhou','Shanghai',false),\n (default,10003,'Shanghai','Hangzhou',false);\n\"" status=ExitStatus(unix_wait_status(0)) stdout="INSERT 0 3\n" stderr="NOTICE: table \"shipments1\" does not exist, skipping\n"
thread 'main' panicked at /Users/kexiang/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sqllogictest-engines-0.21.0/src/postgres/simple.rs:46:22:
internal error: entered unreachable code
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
[cargo-make] ERROR - Error while executing command, exit code: 101
[cargo-make] WARN - Build Failed.
To Reproduce
Prepare your own postgres and mysql.
In risedev.yml, add following config (update with your own config):
Describe the bug
As titled.
Error message/log
To Reproduce
Prepare your own postgres and mysql.
In risedev.yml, add following config (update with your own config):
In
src/risedevtool/src/risedev_env.rs
,let database = &c.database;
writeln!(env, r#"PGDATABASE="{database}""#,).unwrap();
It's fixed in #17829
Start RW:
Run test
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
RW version
the most recent main branch.
Additional context
No response
The text was updated successfully, but these errors were encountered: