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
b7d1c482
Commit
b7d1c482
authored
Oct 06, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Per discussion with pekka removed non-deterministic test case for bug#21381.
parent
f463cb38
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
17 deletions
+0
-17
mysql-test/r/ndb_update.result
mysql-test/r/ndb_update.result
+0
-8
mysql-test/t/ndb_update.test
mysql-test/t/ndb_update.test
+0
-9
No files found.
mysql-test/r/ndb_update.result
View file @
b7d1c482
...
@@ -31,11 +31,3 @@ pk1 b c
...
@@ -31,11 +31,3 @@ pk1 b c
12 2 2
12 2 2
14 1 1
14 1 1
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1(a INT NOT NULL, UNIQUE(a)) ENGINE=ndbcluster;
INSERT INTO t1 VALUES(1),(2);
UPDATE IGNORE t1, t1 AS t1a SET t1.a=3;
SELECT a FROM t1 ORDER BY a;
a
1
3
DROP TABLE t1;
mysql-test/t/ndb_update.test
View file @
b7d1c482
...
@@ -33,13 +33,4 @@ select * from t1 order by pk1;
...
@@ -33,13 +33,4 @@ select * from t1 order by pk1;
DROP
TABLE
IF
EXISTS
t1
;
DROP
TABLE
IF
EXISTS
t1
;
--
enable_warnings
--
enable_warnings
#
# BUG#21381 - Engine not notified about multi-table UPDATE IGNORE
#
CREATE
TABLE
t1
(
a
INT
NOT
NULL
,
UNIQUE
(
a
))
ENGINE
=
ndbcluster
;
INSERT
INTO
t1
VALUES
(
1
),(
2
);
UPDATE
IGNORE
t1
,
t1
AS
t1a
SET
t1
.
a
=
3
;
SELECT
a
FROM
t1
ORDER
BY
a
;
DROP
TABLE
t1
;
# End of 4.1 tests
# End of 4.1 tests
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