summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_update.result
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2004-11-28 22:33:01 +0100
committerunknown <mskold@mysql.com>2004-11-28 22:33:01 +0100
commit6f2e694df0b59e21ca3a40400eea8f35bd05d90f (patch)
tree2aee1f899eacf4f1775349279fb4073eea401b57 /mysql-test/r/ndb_update.result
parentf0af808fccf656febcfb884047aa465bd5b005be (diff)
downloadmariadb-git-6f2e694df0b59e21ca3a40400eea8f35bd05d90f.tar.gz
Added better test for Bug #6794 Wrong outcome of update operation of ndb table
Diffstat (limited to 'mysql-test/r/ndb_update.result')
-rw-r--r--mysql-test/r/ndb_update.result7
1 files changed, 4 insertions, 3 deletions
diff --git a/mysql-test/r/ndb_update.result b/mysql-test/r/ndb_update.result
index 829e722faaa..5df5c861cfb 100644
--- a/mysql-test/r/ndb_update.result
+++ b/mysql-test/r/ndb_update.result
@@ -4,9 +4,10 @@ pk1 INT NOT NULL PRIMARY KEY,
b INT NOT NULL,
c INT NOT NULL
) ENGINE=ndbcluster;
-INSERT INTO t1 VALUES (0, 0, 0),(1,1,1);
+INSERT INTO t1 VALUES (0, 0, 1),(1,1,2),(2,2,3);
UPDATE t1 set b = c;
select * from t1 order by pk1;
pk1 b c
-0 0 0
-1 1 1
+0 1 1
+1 2 2
+2 3 3