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
PK is partition_id, but count(*) > count(distinct(partition_id)), i.e. a single row repeats multiple times.
partition_id
dev=> describe __internal_some_table_123_source_123; Name | Type | Is Hidden | Description -------------------+--------------------------------------------------------------+-----------+------------- partition_id | character varying | false | offset_info | jsonb | false | primary key | partition_id | | table description | __internal_some_table_123_source_123 | | (4 rows) dev=> select count(distinct(partition_id)) from __internal_some_table_123_source_123; count ------- 73 (1 row) dev=> select count(*) from __internal_some_table_123_source_123; count ------- 17520 (1 row)
No response
The text was updated successfully, but these errors were encountered:
Is this related to #5590?
Sorry, something went wrong.
No branches or pull requests
Describe the bug
PK is
partition_id
, but count(*) > count(distinct(partition_id)), i.e. a single row repeats multiple times.Error message/log
No response
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
The text was updated successfully, but these errors were encountered: