-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
close #53176
- Loading branch information
1 parent
b26098f
commit ea34b0b
Showing
6 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
create view sql_mode_view as select @@sql_mode; | ||
Error 1351: View's SELECT contains a variable or parameter | ||
create view sql_mode_view as select @@global.sql_mode; | ||
Error 1351: View's SELECT contains a variable or parameter | ||
create view sql_mode_view as select @a; | ||
Error 1351: View's SELECT contains a variable or parameter | ||
create view sql_mode_view as select 1 where @a = 4; | ||
Error 1351: View's SELECT contains a variable or parameter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# issue 53176 | ||
-- error 1351 | ||
create view sql_mode_view as select @@sql_mode; | ||
-- error 1351 | ||
create view sql_mode_view as select @@global.sql_mode; | ||
-- error 1351 | ||
create view sql_mode_view as select @a; | ||
-- error 1351 | ||
create view sql_mode_view as select 1 where @a = 4; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters