summaryrefslogtreecommitdiff
path: root/mysql-test/t/ndb_blob.test
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2004-08-20 14:44:35 +0200
committerunknown <mskold@mysql.com>2004-08-20 14:44:35 +0200
commite9348acfdbf04ce9d32c1cd671d9d08c1f71dea8 (patch)
tree7c29b30ef8422a18e4d4a93577987ad5ebdc2fdc /mysql-test/t/ndb_blob.test
parent6527c6fee7ef0ed29f22a19a8a0f18303b98ab8a (diff)
downloadmariadb-git-e9348acfdbf04ce9d32c1cd671d9d08c1f71dea8.tar.gz
Added test for fix of bug#5072
Diffstat (limited to 'mysql-test/t/ndb_blob.test')
-rw-r--r--mysql-test/t/ndb_blob.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_blob.test b/mysql-test/t/ndb_blob.test
index c1166a7a90c..391d2a2ec23 100644
--- a/mysql-test/t/ndb_blob.test
+++ b/mysql-test/t/ndb_blob.test
@@ -203,6 +203,14 @@ where c >= 100;
commit;
select * from t1 where c >= 100 order by a;
+# alter table
+
+select * from t1 order by a;
+alter table t1 add x int;
+select * from t1 order by a;
+alter table t1 drop x;
+select * from t1 order by a;
+
# range scan delete
delete from t1 where c >= 100;
commit;