summaryrefslogtreecommitdiff
path: root/mysql-test/t/ndb_update.test
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/t/ndb_update.test
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/t/ndb_update.test')
-rw-r--r--mysql-test/t/ndb_update.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/ndb_update.test b/mysql-test/t/ndb_update.test
index 186e4a99ad3..3b0e84e2344 100644
--- a/mysql-test/t/ndb_update.test
+++ b/mysql-test/t/ndb_update.test
@@ -17,6 +17,6 @@ CREATE TABLE t1 (
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;