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

SELECT execution failed #53229

Closed
Nickelth opened this issue May 13, 2024 · 3 comments
Closed

SELECT execution failed #53229

Nickelth opened this issue May 13, 2024 · 3 comments
Labels
sig/execution SIG execution type/bug This issue is a bug.

Comments

@Nickelth
Copy link

Nickelth commented May 13, 2024

Bug Report

Please answer these questions before submitting your issue. Thanks!

1. Minimal reproduce step (Required)

CREATE TABLE t0(c0 INTEGER UNSIGNED );
CREATE TABLE t1(c0 BOOL , c1 CHAR, c2 INT);
insert into t0 values(1), (2), (3);
insert into t1 values(0, 'a', 1), (1, 'b', 2), (1, 'c', 3);
SELECT t1.c0 FROM  t0 RIGHT JOIN t1 ON (NOT (false));

2. What did you expect to see? (Required)

SELECT executed successfully, In MySQL 8.3.0, it produces:

+------+
| c0   |
+------+
|    0 |
|    0 |
|    0 |
|    1 |
|    1 |
|    1 |
|    1 |
|    1 |
|    1 |
+------+

3. What did you see instead (Required)

ERROR 8118 (HY000): Failed to build executor

4. What is your TiDB version? (Required)

release version 8.0.0

@Nickelth Nickelth added the type/bug This issue is a bug. label May 13, 2024
@Nickelth Nickelth changed the title SELECT execute failed SELECT execution failed May 13, 2024
@jebter jebter added the sig/execution SIG execution label May 14, 2024
@yibin87
Copy link
Contributor

yibin87 commented May 15, 2024

Not reproduced using latest v8.0.0 version:
| Release Version: v8.0.0
Edition: Community
Git Commit Hash: 8ba1fa4
Git Branch: HEAD
UTC Build Time: 2024-03-28 14:22:04
GoVersion: go1.21.6
Race Enabled: false
Check Table Before Drop: false
Store: tikv |
Neither with latest master version. Close it now.

@yibin87
Copy link
Contributor

yibin87 commented May 15, 2024

/close

Copy link

ti-chi-bot bot commented May 15, 2024

@yibin87: Closing this issue.

In response to this:

/close

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@ti-chi-bot ti-chi-bot bot closed this as completed May 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
sig/execution SIG execution type/bug This issue is a bug.
Projects
None yet
Development

No branches or pull requests

3 participants