-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Error 1105: should ensure all columns have the same length #16147
Comments
a similar problem with tidb error log
|
@XuHuaiyu Ping~ |
func (b *builtinArithmeticIntDivideDecimalSig) vecEvalInt(input *chunk.Chunk, result *chunk.Column) error {
...
for i, arg := range b.args {
...
if terror.ErrorEqual(err, types.ErrTruncated) {
err = nil
}
...
}
...
result.MergeNulls(buf[0], buf[1]) If the child of |
Another occurrence from https://internal.pingcap.net/idc-jenkins/blue/organizations/jenkins/tikv_ghpr_integration-copr-test/detail/tikv_ghpr_integration-copr-test/3553/pipeline/ of tikv/tikv#8466
|
I can't reproduce this case. We should print the stack information when it occurs. |
@qw4990 The stackinfo is available in https://internal.pingcap.net/idc-jenkins/blue/organizations/jenkins/tikv_ghpr_integration-copr-test/detail/tikv_ghpr_integration-copr-test/3553/pipeline/
|
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. What did you do?
This issue is discovered by random test:
https://internal.pingcap.net/idc-jenkins/blue/organizations/jenkins/tikv_ghpr_integration-copr-test/detail/tikv_ghpr_integration-copr-test/2377/pipeline/
This SQL sometimes fail due to a memory problem:
In the test above, it fails when running with mocktikv.
You can see test data in https://github.com/tikv/copr-test/tree/master/push-down-test/prepare
2. What did you expect to see?
3. What did you see instead?
Error 1105: should ensure all columns have the same length
4. What version of TiDB are you using? (
tidb-server -V
or runselect tidb_version();
on TiDB)master
The text was updated successfully, but these errors were encountered: