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
Clickhouse version: 21.2.5.5
Got wrong result when excuting mutation on Memory table engine.
CREATE TABLE mem_test(id Int64) ENGINE=Memory(); INSERT INTO mem_test VALUES (1), (2), (3); ALTER TABLE mem_test UPDATE id=4 WHERE id=1; SELECT count(*) FROM mem_test; ┌─count()─┐ │ 24 │ └─────────┘ SELECT * FROM mem_test; ┌─id─┐ │ 4 │ │ 2 │ │ 3 │ └────┘ 3 rows in set. Elapsed: 0.001 sec.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Clickhouse version: 21.2.5.5
Got wrong result when excuting mutation on Memory table engine.
The text was updated successfully, but these errors were encountered: