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

temporary table appears in the information_schema.tables #55166

Closed
apollodafoni opened this issue Aug 2, 2024 · 3 comments · Fixed by #55209
Closed

temporary table appears in the information_schema.tables #55166

apollodafoni opened this issue Aug 2, 2024 · 3 comments · Fixed by #55209
Assignees
Labels
component/ddl This issue is related to DDL of TiDB. feature/developing the related feature is in development impact/wrong-result severity/major type/bug The issue is confirmed as a bug.

Comments

@apollodafoni
Copy link

Bug Report

Please answer these questions before submitting your issue. Thanks!

1. Minimal reproduce step (Required)

create temporary table tb1(id int);
select count(1) from information_schema.tables where table_name = 'tb1';

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

+----------+
| count(1) |
+----------+
| 0 |
+----------+

3. What did you see instead (Required)

+----------+
| count(1) |
+----------+
| 1 |
+----------+

4. What is your TiDB version? (Required)

Release Version: v8.3.0-alpha
Edition: Community
Git Commit Hash: b0aced8
Git Branch: heads/refs/tags/v8.3.0-alpha
UTC Build Time: 2024-08-01 11:46:05
GoVersion: go1.21.10
Race Enabled: false
Check Table Before Drop: false
Store: tikv

@apollodafoni apollodafoni added the type/bug The issue is confirmed as a bug. label Aug 2, 2024
@apollodafoni
Copy link
Author

/component ddl

@ti-chi-bot ti-chi-bot bot added the component/ddl This issue is related to DDL of TiDB. label Aug 2, 2024
@apollodafoni
Copy link
Author

/severity major

@apollodafoni
Copy link
Author

/impact wrong-result

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component/ddl This issue is related to DDL of TiDB. feature/developing the related feature is in development impact/wrong-result severity/major type/bug The issue is confirmed as a bug.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants