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

TiDB allows variables and parameters in VIEWs while MySQL does not #53176

Open
mjonss opened this issue May 10, 2024 · 0 comments
Open

TiDB allows variables and parameters in VIEWs while MySQL does not #53176

mjonss opened this issue May 10, 2024 · 0 comments
Labels
compatibility-mysql8 This is a compatibility issue with MySQL 8.0(but NOT 5.7) may-affects-5.4 This bug maybe affects 5.4.x versions. may-affects-6.1 may-affects-6.5 may-affects-7.1 may-affects-7.5 may-affects-8.1 severity/major sig/sql-infra SIG: SQL Infra type/bug This issue is a bug.

Comments

@mjonss
Copy link
Contributor

mjonss commented May 10, 2024

Bug Report

Please answer these questions before submitting your issue. Thanks!

1. Minimal reproduce step (Required)

create view sql_mode_view as select @@sql_mode;

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

mysql> create view sql_mode_view as select @@sql_mode;
ERROR 1351 (HY000): View's SELECT contains a variable or parameter

3. What did you see instead (Required)

tidb> create view sql_mode_view as select @@sql_mode;
Query OK, 0 rows affected (0.09 sec)

4. What is your TiDB version? (Required)

tidb_version(): Release Version: v8.0.0
Edition: Community
Git Commit Hash: 8ba1fa452b1ccdbfb85879ea94b9254aabba2916
Git Branch: HEAD
UTC Build Time: 2024-03-28 14:22:34
GoVersion: go1.21.6
Race Enabled: false
Check Table Before Drop: false
Store: tikv
@mjonss mjonss added the type/bug This issue is a bug. label May 10, 2024
@jebter jebter added sig/sql-infra SIG: SQL Infra severity/major compatibility-mysql8 This is a compatibility issue with MySQL 8.0(but NOT 5.7) labels May 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compatibility-mysql8 This is a compatibility issue with MySQL 8.0(but NOT 5.7) may-affects-5.4 This bug maybe affects 5.4.x versions. may-affects-6.1 may-affects-6.5 may-affects-7.1 may-affects-7.5 may-affects-8.1 severity/major sig/sql-infra SIG: SQL Infra type/bug This issue is a bug.
Projects
None yet
Development

No branches or pull requests

2 participants