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

cache failure with inherited tables #1168

Open
readyset-railway opened this issue Mar 25, 2024 · 0 comments
Open

cache failure with inherited tables #1168

readyset-railway opened this issue Mar 25, 2024 · 0 comments

Comments

@readyset-railway
Copy link
Contributor

Summary

When an inherited table is created and data is inserted into the child table, the parent table cache doesn't get updated.

Expected behavior

image.png

Actual behavior

image.png

Steps to reproduce

CREATE TABLE t1 (a int);

INSERT INTO t1 VALUES (1);

CREATE TABLE t2 (b int) INHERITS (t1);

SELECT * FROM t1;

INSERT INTO t2 VALUES(2,2);

CREATE CACHE FROM SELECT * FROM t1;

SELECT * FROM t1;

ReadySet version

359b727a7c016c3975ff946201cd9a48f215f448

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant