Commit ca8a6d85 authored by joreland@mysql.com's avatar joreland@mysql.com

ndb - make sure to drop table at end ndb_update

parent c4616595
...@@ -11,3 +11,4 @@ pk1 b c ...@@ -11,3 +11,4 @@ pk1 b c
0 1 1 0 1 1
1 2 2 1 2 2
2 3 3 2 3 3
drop table t1;
...@@ -20,3 +20,5 @@ CREATE TABLE t1 ( ...@@ -20,3 +20,5 @@ CREATE TABLE t1 (
INSERT INTO t1 VALUES (0, 0, 1),(1,1,2),(2,2,3); INSERT INTO t1 VALUES (0, 0, 1),(1,1,2),(2,2,3);
UPDATE t1 set b = c; UPDATE t1 set b = c;
select * from t1 order by pk1; select * from t1 order by pk1;
drop table t1;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment