1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

ndb - make sure to drop table at end ndb_update

mysql-test/r/ndb_update.result:
  make sure to drop table at end of test
mysql-test/t/ndb_update.test:
  make sure to drop table at end of test
This commit is contained in:
unknown
2005-01-13 09:22:00 +01:00
parent 112325c402
commit 12040a9dea
2 changed files with 3 additions and 0 deletions

View File

@@ -11,3 +11,4 @@ pk1 b c
0 1 1
1 2 2
2 3 3
drop table t1;

View File

@@ -20,3 +20,5 @@ CREATE TABLE t1 (
INSERT INTO t1 VALUES (0, 0, 1),(1,1,2),(2,2,3);
UPDATE t1 set b = c;
select * from t1 order by pk1;
drop table t1;