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
More details are in the gist by @nikolaymatrosov https://gist.github.com/nikolaymatrosov/8a4e77af2bbb15f3e9b160c1803d22f7
The text was updated successfully, but these errors were encountered:
Same wrong behavior could be achieved with UPSERT.
UPSERT
Sorry, something went wrong.
I made a test to reproduce #13211. It passes in main. Am I wrong somewhere? Which server version do you use?
Serverless YDB in the Yandex Cloud.
If you sequentially send these queries, you will get result as it shown in the screenshot.
DROP table users;
CREATE TABLE users ( id Serial, name Utf8, PRIMARY KEY (id) );
REPLACE INTO users(id, name) VALUES (2, "z");
REPLACE INTO users(name) VALUES ("a"), ("b"), ("c") RETURNING *;
Looks like an already fixed bug. You should wait for a newer release.
24-3-13 should contain all the bugfixes.
ssmike
No branches or pull requests
More details are in the gist by @nikolaymatrosov https://gist.github.com/nikolaymatrosov/8a4e77af2bbb15f3e9b160c1803d22f7
The text was updated successfully, but these errors were encountered: