We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
postgres enum data type cannot ingest into RW as varchar
reported by a customer.
risingwave-standalone | 2024-04-18T01:59:36.84041242Z ERROR rw-streaming actor{otel.name="Actor 178" actor_id=178 prev_epoch=6302621750067200 curr_epoch=6302621815799808}:executor{otel.name="StreamCdcScan B200002715"}: risingwave_connector::parser::postgres: parse column failed column="source" error=error deserializing column 1: cannot convert between the Rust type `core::option::Option<alloc::string::String>` and the Postgres type `event_sources` suppressed_count=3
event_sources is a enum created by:
event_sources
CREATE TYPE event_sources AS ENUM ('A', 'B', 'C', 'D', 'E');
CREATE TABLE multiverse.source_priorities ( id integer PRIMARY KEY, source varchar ) FROM db TABLE "public.source";
No response
The text was updated successfully, but these errors were encountered:
KeXiangWang
Successfully merging a pull request may close this issue.
Describe the bug
postgres enum data type cannot ingest into RW as varchar
reported by a customer.
Error message/log
event_sources
is a enum created by:To Reproduce
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: