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
Insert failing having negative value with missing bind var
missing bind var
"t10": { "column_vindexes": [ { "column": "sharding_key", "name": "hash" } }
create table t10 ( id bigint, sharding_key bigint, col1 varchar(50), col2 int, col3 int, primary key (id) ) Engine = InnoDB;
Execute insert ignore into t10(id, sharding_key, col1, col2, col3) values(1, 2, 'a', 1, 2), (2, -2, 'b', -3, 4), (3, -4, 'c', 6, -7), (4, 6, 'd', 4, -10)
insert ignore into t10(id, sharding_key, col1, col2, col3) values(1, 2, 'a', 1, 2), (2, -2, 'b', -3, 4), (3, -4, 'c', 6, -7), (4, 6, 'd', 4, -10)
It fails.
18.0.0-rc1 and main
NA
https://gist.github.com/harshit-gangal/e7270483a48f44348e7b2103fac9a0c3
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Overview of the Issue
Insert failing having negative value with
missing bind var
Reproduction Steps
Execute
insert ignore into t10(id, sharding_key, col1, col2, col3) values(1, 2, 'a', 1, 2), (2, -2, 'b', -3, 4), (3, -4, 'c', 6, -7), (4, 6, 'd', 4, -10)
It fails.
Binary Version
Operating System and Environment details
Log Fragments
The text was updated successfully, but these errors were encountered: