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
5d8b8a8a
Commit
5d8b8a8a
authored
Jul 18, 2012
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Plain Diff
Merge bug#1007622 from 5.3 to 5.5
parents
b677872d
d8536aae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
1 deletion
+34
-1
mysql-test/r/view.result
mysql-test/r/view.result
+13
-0
mysql-test/t/view.test
mysql-test/t/view.test
+13
-0
sql/table.cc
sql/table.cc
+8
-1
No files found.
mysql-test/r/view.result
View file @
5d8b8a8a
...
...
@@ -4674,6 +4674,19 @@ INSERT INTO t2 VALUES (1);
DROP TRIGGER tr;
DROP VIEW v1;
DROP TABLE t1,t2,t3;
#
# LP bug#1007622 Server crashes in handler::increment_statistics on
# inserting into a view over a view
#
CREATE TABLE t1 (a INT);
CREATE ALGORITHM=MERGE VIEW v1 AS SELECT a1.* FROM t1 AS a1, t1 AS a2;
CREATE ALGORITHM=MERGE VIEW v2 AS SELECT * FROM v1;
INSERT INTO v2 (a) VALUES (1) ;
select * from t1;
a
1
drop view v2,v1;
drop table t1;
# -----------------------------------------------------------------
# -- End of 5.3 tests.
# -----------------------------------------------------------------
...
...
mysql-test/t/view.test
View file @
5d8b8a8a
...
...
@@ -4613,6 +4613,19 @@ DROP TRIGGER tr;
DROP
VIEW
v1
;
DROP
TABLE
t1
,
t2
,
t3
;
--
echo
#
--
echo
# LP bug#1007622 Server crashes in handler::increment_statistics on
--
echo
# inserting into a view over a view
--
echo
#
CREATE
TABLE
t1
(
a
INT
);
CREATE
ALGORITHM
=
MERGE
VIEW
v1
AS
SELECT
a1
.*
FROM
t1
AS
a1
,
t1
AS
a2
;
CREATE
ALGORITHM
=
MERGE
VIEW
v2
AS
SELECT
*
FROM
v1
;
INSERT
INTO
v2
(
a
)
VALUES
(
1
)
;
select
*
from
t1
;
drop
view
v2
,
v1
;
drop
table
t1
;
--
echo
# -----------------------------------------------------------------
--
echo
# -- End of 5.3 tests.
--
echo
# -----------------------------------------------------------------
...
...
sql/table.cc
View file @
5d8b8a8a
...
...
@@ -4544,7 +4544,14 @@ bool TABLE_LIST::check_single_table(TABLE_LIST **table_arg,
tbl
;
tbl
=
tbl
->
next_local
)
{
if
(
tbl
->
table
)
/*
Merged view has also temporary table attached (in 5.2 if it has table
then it was real table), so we have filter such temporary tables out
by checking that it is not merged view
*/
if
(
tbl
->
table
&&
!
(
tbl
->
is_view
()
&&
tbl
->
is_merged_derived
()))
{
if
(
tbl
->
table
->
map
&
map
)
{
...
...
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