Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
5dc4f103
Commit
5dc4f103
authored
Feb 05, 2007
by
kroki/tomash@moonlight.home
Browse files
Options
Browse Files
Download
Plain Diff
Merge moonlight.home:/home/tomash/src/mysql_ab/mysql-5.0-bug25897
into moonlight.home:/home/tomash/src/mysql_ab/mysql-5.1
parents
d163a5f9
664cd8b6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
4 deletions
+43
-4
mysql-test/r/view.result
mysql-test/r/view.result
+10
-0
mysql-test/t/view.test
mysql-test/t/view.test
+20
-0
sql/sql_lex.cc
sql/sql_lex.cc
+11
-0
sql/sql_lex.h
sql/sql_lex.h
+2
-4
No files found.
mysql-test/r/view.result
View file @
5dc4f103
...
...
@@ -3025,6 +3025,16 @@ SHOW CREATE VIEW v1;
View Create View
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select _latin1'The\ZEnd' AS `TheEnd`
DROP VIEW v1;
DROP VIEW IF EXISTS v1;
SELECT * FROM (SELECT 1) AS t;
1
1
CREATE VIEW v1 AS SELECT * FROM (SELECT 1) AS t;
ERROR HY000: View's SELECT contains a subquery in the FROM clause
# Previously the following would fail.
SELECT * FROM (SELECT 1) AS t;
1
1
End of 5.0 tests.
DROP DATABASE IF EXISTS `d-1`;
CREATE DATABASE `d-1`;
...
...
mysql-test/t/view.test
View file @
5dc4f103
...
...
@@ -2908,6 +2908,7 @@ DROP FUNCTION f1;
DROP
VIEW
v1
;
DROP
TABLE
t1
;
#
# Bug #16813 (WITH CHECK OPTION doesn't work with UPDATE)
#
...
...
@@ -2974,8 +2975,27 @@ SHOW CREATE VIEW v1;
DROP
VIEW
v1
;
#
# BUG#25897: Some queries are no longer possible after a CREATE VIEW
# fails
#
--
disable_warnings
DROP
VIEW
IF
EXISTS
v1
;
--
enable_warnings
let
$query
=
SELECT
*
FROM
(
SELECT
1
)
AS
t
;
eval
$query
;
--
error
ER_VIEW_SELECT_DERIVED
eval
CREATE
VIEW
v1
AS
$query
;
--
echo
# Previously the following would fail.
eval
$query
;
--
echo
End
of
5.0
tests
.
#
# Bug#21370 View renaming lacks tablename_to_filename encoding
#
...
...
sql/sql_lex.cc
View file @
5dc4f103
...
...
@@ -100,6 +100,16 @@ void lex_free(void)
}
void
st_parsing_options
::
reset
()
{
allows_variable
=
TRUE
;
allows_select_into
=
TRUE
;
allows_select_procedure
=
TRUE
;
allows_derived
=
TRUE
;
}
/*
This is called before every query that is to be parsed.
Because of this, it's critical to not do too much things here.
...
...
@@ -150,6 +160,7 @@ void lex_start(THD *thd, const uchar *buf, uint length)
lex
->
safe_to_cache_query
=
1
;
lex
->
time_zone_tables_used
=
0
;
lex
->
leaf_tables_insert
=
0
;
lex
->
parsing_options
.
reset
();
lex
->
empty_field_list_on_rset
=
0
;
lex
->
select_lex
.
select_number
=
1
;
lex
->
next_state
=
MY_LEX_START
;
...
...
sql/sql_lex.h
View file @
5dc4f103
...
...
@@ -890,10 +890,8 @@ struct st_parsing_options
bool
allows_select_procedure
;
bool
allows_derived
;
st_parsing_options
()
:
allows_variable
(
TRUE
),
allows_select_into
(
TRUE
),
allows_select_procedure
(
TRUE
),
allows_derived
(
TRUE
)
{}
st_parsing_options
()
{
reset
();
}
void
reset
();
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment