summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <joreland@mysql.com>2005-01-11 13:56:06 +0100
committerunknown <joreland@mysql.com>2005-01-11 13:56:06 +0100
commitd067695909d6aa58e30dd43eedc2a8e3a7fc588c (patch)
tree14a811243ec4d0d269c2b73d80341d2fb56a7e3d /mysql-test/r
parent7bdd452ddb8b1613044caf09ede9d391ab7cc376 (diff)
parentf2e368483d2f7aafa983a0395ba9bfe32c674d5d (diff)
downloadmariadb-git-d067695909d6aa58e30dd43eedc2a8e3a7fc588c.tar.gz
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/jonas/src/mysql-5.0 sql/net_serv.cc: Auto merged sql/sql_class.h: Auto merged
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/ndb_index_ordered.result16
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_index_ordered.result b/mysql-test/r/ndb_index_ordered.result
index ccb202b25a8..7558e5cdb11 100644
--- a/mysql-test/r/ndb_index_ordered.result
+++ b/mysql-test/r/ndb_index_ordered.result
@@ -529,3 +529,19 @@ count(*)-8
select count(*)-9 from t1 use index (ti) where ti <= '23:59:59';
count(*)-9
0
+drop table t1;
+create table t1(a int primary key, b int not null, index(b));
+insert into t1 values (1,1), (2,2);
+set autocommit=0;
+begin;
+select count(*) from t1;
+count(*)
+2
+ALTER TABLE t1 ADD COLUMN c int;
+select a from t1 where b = 2;
+a
+2
+show tables;
+Tables_in_test
+t1
+drop table t1;