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
e690c55d
Commit
e690c55d
authored
Sep 16, 2009
by
Alexander Nozdrin
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-trunk -> mysql-trunk-bugfixing.
parents
6de63a27
981640a5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
147 additions
and
10 deletions
+147
-10
mysql-test/r/view.result
mysql-test/r/view.result
+111
-0
mysql-test/t/view.test
mysql-test/t/view.test
+32
-0
support-files/mysql.spec.sh
support-files/mysql.spec.sh
+4
-10
No files found.
mysql-test/r/view.result
View file @
e690c55d
...
@@ -3699,6 +3699,117 @@ SELECT * FROM v1 IGNORE INDEX (c2) WHERE c2=2;
...
@@ -3699,6 +3699,117 @@ SELECT * FROM v1 IGNORE INDEX (c2) WHERE c2=2;
ERROR 42000: Key 'c2' doesn't exist in table 'v1'
ERROR 42000: Key 'c2' doesn't exist in table 'v1'
DROP VIEW v1;
DROP VIEW v1;
DROP TABLE t1;
DROP TABLE t1;
#
# Bug #45806 crash when replacing into a view with a join!
#
CREATE TABLE t1(a INT UNIQUE);
CREATE VIEW v1 AS SELECT t1.a FROM t1, t1 AS a;
INSERT INTO t1 VALUES (1), (2);
REPLACE INTO v1(a) SELECT 1 FROM t1,t1 AS c;
SELECT * FROM v1;
a
1
2
1
2
REPLACE INTO v1(a) SELECT 3 FROM t1,t1 AS c;
SELECT * FROM v1;
a
1
2
3
1
2
3
1
2
3
DELETE FROM t1 WHERE a=3;
INSERT INTO v1(a) SELECT 1 FROM t1,t1 AS c
ON DUPLICATE KEY UPDATE `v1`.`a`= 1;
SELECT * FROM v1;
a
1
2
1
2
CREATE VIEW v2 AS SELECT t1.a FROM t1, v1 AS a;
REPLACE INTO v2(a) SELECT 1 FROM t1,t1 AS c;
SELECT * FROM v2;
a
1
2
1
2
1
2
1
2
REPLACE INTO v2(a) SELECT 3 FROM t1,t1 AS c;
SELECT * FROM v2;
a
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
INSERT INTO v2(a) SELECT 1 FROM t1,t1 AS c
ON DUPLICATE KEY UPDATE `v2`.`a`= 1;
SELECT * FROM v2;
a
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
1
2
3
DROP VIEW v1;
DROP VIEW v2;
DROP TABLE t1;
# -- End of test case for Bug#45806
# -----------------------------------------------------------------
# -----------------------------------------------------------------
# -- Bug#40825: Error 1356 while selecting from a view
# -- Bug#40825: Error 1356 while selecting from a view
# -- with a "HAVING" clause though query works
# -- with a "HAVING" clause though query works
...
...
mysql-test/t/view.test
View file @
e690c55d
...
@@ -3680,6 +3680,38 @@ SELECT * FROM v1 IGNORE INDEX (c2) WHERE c2=2;
...
@@ -3680,6 +3680,38 @@ SELECT * FROM v1 IGNORE INDEX (c2) WHERE c2=2;
DROP
VIEW
v1
;
DROP
VIEW
v1
;
DROP
TABLE
t1
;
DROP
TABLE
t1
;
--
echo
#
--
echo
# Bug #45806 crash when replacing into a view with a join!
--
echo
#
CREATE
TABLE
t1
(
a
INT
UNIQUE
);
CREATE
VIEW
v1
AS
SELECT
t1
.
a
FROM
t1
,
t1
AS
a
;
INSERT
INTO
t1
VALUES
(
1
),
(
2
);
REPLACE
INTO
v1
(
a
)
SELECT
1
FROM
t1
,
t1
AS
c
;
SELECT
*
FROM
v1
;
REPLACE
INTO
v1
(
a
)
SELECT
3
FROM
t1
,
t1
AS
c
;
SELECT
*
FROM
v1
;
DELETE
FROM
t1
WHERE
a
=
3
;
INSERT
INTO
v1
(
a
)
SELECT
1
FROM
t1
,
t1
AS
c
ON
DUPLICATE
KEY
UPDATE
`v1`
.
`a`
=
1
;
SELECT
*
FROM
v1
;
CREATE
VIEW
v2
AS
SELECT
t1
.
a
FROM
t1
,
v1
AS
a
;
REPLACE
INTO
v2
(
a
)
SELECT
1
FROM
t1
,
t1
AS
c
;
SELECT
*
FROM
v2
;
REPLACE
INTO
v2
(
a
)
SELECT
3
FROM
t1
,
t1
AS
c
;
SELECT
*
FROM
v2
;
INSERT
INTO
v2
(
a
)
SELECT
1
FROM
t1
,
t1
AS
c
ON
DUPLICATE
KEY
UPDATE
`v2`
.
`a`
=
1
;
SELECT
*
FROM
v2
;
DROP
VIEW
v1
;
DROP
VIEW
v2
;
DROP
TABLE
t1
;
--
echo
# -- End of test case for Bug#45806
--
echo
# -----------------------------------------------------------------
--
echo
# -----------------------------------------------------------------
--
echo
# -- Bug#40825: Error 1356 while selecting from a view
--
echo
# -- Bug#40825: Error 1356 while selecting from a view
--
echo
# -- with a "HAVING" clause though query works
--
echo
# -- with a "HAVING" clause though query works
...
...
support-files/mysql.spec.sh
View file @
e690c55d
...
@@ -38,13 +38,6 @@
...
@@ -38,13 +38,6 @@
%
{
?_with_bundled_zlib:%define WITH_BUNDLED_ZLIB 1
}
%
{
?_with_bundled_zlib:%define WITH_BUNDLED_ZLIB 1
}
%
{!
?_with_bundled_zlib:%define WITH_BUNDLED_ZLIB 0
}
%
{!
?_with_bundled_zlib:%define WITH_BUNDLED_ZLIB 0
}
# ----------------------------------------------------------------------
# use "rpmbuild --without innodb_plugin" or "rpm --define '_without_innodb_plugin 1'"
# (for RPM 3.x) to not build the innodb plugin (on by default with innodb builds)
# ----------------------------------------------------------------------
%
{
?_without_innodb_plugin:%define WITHOUT_INNODB_PLUGIN 1
}
%
{!
?_without_innodb_plugin:%define WITHOUT_INNODB_PLUGIN 0
}
# use "rpmbuild --with cluster" or "rpm --define '_with_cluster 1'" (for RPM 3.x)
# use "rpmbuild --with cluster" or "rpm --define '_with_cluster 1'" (for RPM 3.x)
# to build with cluster support (off by default)
# to build with cluster support (off by default)
%
{
?_with_cluster:%define CLUSTER_BUILD 1
}
%
{
?_with_cluster:%define CLUSTER_BUILD 1
}
...
@@ -306,9 +299,6 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-$PATH}\" \
...
@@ -306,9 +299,6 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-$PATH}\" \
--enable-thread-safe-client
\
--enable-thread-safe-client
\
--with-readline
\
--with-readline
\
--with-innodb
\
--with-innodb
\
%if %{WITHOUT_INNODB_PLUGIN}
--without-plugin-innodb_plugin
\
%endif
%if %{CLUSTER_BUILD}
%if %{CLUSTER_BUILD}
--with-ndbcluster
\
--with-ndbcluster
\
%else
%else
...
@@ -873,6 +863,10 @@ fi
...
@@ -873,6 +863,10 @@ fi
# itself - note that they must be ordered by date (important when
# itself - note that they must be ordered by date (important when
# merging BK trees)
# merging BK trees)
%changelog
%changelog
*
Fri Aug 28 2009 Joerg Bruehe <joerg.bruehe@sun.com>
- Merge up form 5.1 to 5.4: Remove handling
for
the InnoDB plugin.
*
Mon Aug 24 2009 Jonathan Perkin <jperkin@sun.com>
*
Mon Aug 24 2009 Jonathan Perkin <jperkin@sun.com>
- Add conditionals
for
bundled zlib and innodb plugin
- Add conditionals
for
bundled zlib and innodb plugin
...
...
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