Skip to content
New issue

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

bug: fail to create iceberg table if binary type inside a nested type #20552

Open
chenzl25 opened this issue Feb 20, 2025 · 0 comments
Open

bug: fail to create iceberg table if binary type inside a nested type #20552

chenzl25 opened this issue Feb 20, 2025 · 0 comments
Assignees
Labels
type/bug Something isn't working
Milestone

Comments

@chenzl25
Copy link
Contributor

Describe the bug

The reason is iceberg-rs will try to convert a iceberg binary type to largebinary arrow type, while risingwave converts binary type to binary arrow type. Our type checker relies on arrow type to compare these 2 types, so there is an mismatch.
example

create table t4 (a struct<trace_id bytea>);

create sink xxx from t4 with(
  connector = 'iceberg',
  create_table_if_not_exists='true',
  .....
)

Error message/log


To Reproduce

No response

Expected behavior

No response

How did you deploy RisingWave?

No response

The version of RisingWave

No response

Additional context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant