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: internal table doesn't display correctly #17313

Closed
zwang28 opened this issue Jun 18, 2024 · 1 comment
Closed

bug: internal table doesn't display correctly #17313

zwang28 opened this issue Jun 18, 2024 · 1 comment
Labels
type/bug Something isn't working
Milestone

Comments

@zwang28
Copy link
Contributor

zwang28 commented Jun 18, 2024

Describe the bug

PK is partition_id, but count(*) > count(distinct(partition_id)), i.e. a single row repeats multiple times.

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)

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

@zwang28 zwang28 added the type/bug Something isn't working label Jun 18, 2024
@github-actions github-actions bot added this to the release-1.10 milestone Jun 18, 2024
@BugenZhao
Copy link
Member

Is this related to #5590?

@zwang28 zwang28 closed this as not planned Won't fix, can't repro, duplicate, stale Aug 20, 2024
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

2 participants