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
See title
I really hope you don't panic when a new column is added upstream.
Error message/log
ERROR: Panicked when handling the request: assertion `left == right` failed
left: 1
right: 2
This is a bug. We would appreciate a bug report at:
https://github.com/risingwavelabs/risingwave/issues/new?labels=type%2Fbug&template=bug_report.yml
server closed the connection unexpectedly
This probably means the server terminated abnormally
before or while processing the request.
The connection to the server was lost. Attempting reset: Succeeded.
psql (16.6 (Ubuntu 16.6-0ubuntu0.24.04.1), server 13.14.0)
To Reproduce
Postgres
CREATETABLEIF NOT EXISTS test_52 (
user_id UUID PRIMARY KEY,
ar_col2 point[] NOT NULL
);
RW
CREATE SOURCE IF NOT EXISTS af_pg_src WITH (
connector='postgres-cdc',
hostname='host.docker.internal',
port=15432,
username='master',
password='password',
database.name='main'
);
CREATETABLEIF NOT EXISTS af_pg_test_57 (
user_id VARCHARPRIMARY KEY
)
FROM af_pg_src TABLE 'public.test_52';
Expected behavior
I expect the "unknown" columns to be ignored.
And I do not expect PANIC at all
Describe the bug
See title
I really hope you don't panic when a new column is added upstream.
Error message/log
To Reproduce
Postgres
RW
Expected behavior
I expect the "unknown" columns to be ignored.
And I do not expect PANIC at all
How did you deploy RisingWave?
docker compose
The version of RisingWave
PostgreSQL 13.14.0-RisingWave-2.1.2 (13d9285)
Additional context
No response
The text was updated successfully, but these errors were encountered: