summaryrefslogtreecommitdiff
path: root/mysql-test/t/ndb_dd_basic.test
diff options
context:
space:
mode:
authorunknown <jmiller/ndbdev@mysql.com/ndb08.mysql.com>2006-08-30 15:28:51 +0200
committerunknown <jmiller/ndbdev@mysql.com/ndb08.mysql.com>2006-08-30 15:28:51 +0200
commita6c63a711021a000b5c1b6edf02ad56f2e3b7e1e (patch)
tree7cf8a73e6cac94deceea6c39c9850bf7682bfb7a /mysql-test/t/ndb_dd_basic.test
parent15ede69561fb15d2090de4104cf2e5c252d9aec5 (diff)
downloadmariadb-git-a6c63a711021a000b5c1b6edf02ad56f2e3b7e1e.tar.gz
Had issues with older clone where I could not pull latest patches. So I pulled a fresh clone. Moved updated test cases over and restested. Therefore I have to do a new commit for these files.
BitKeeper/deleted/.del-ndb_dd_advance.test: Delete: mysql-test/t/ndb_dd_advance.test BitKeeper/deleted/.del-ndb_dd_advance2.test: Delete: mysql-test/t/ndb_dd_advance2.test BitKeeper/deleted/.del-ndb_dd_advance.result: Delete: mysql-test/r/ndb_dd_advance.result BitKeeper/deleted/.del-ndb_dd_advance2.result: Delete: mysql-test/r/ndb_dd_advance2.result mysql-test/t/ndb_dd_alter.test: Moved from problem clone to new clone mysql-test/r/ndb_dd_alter.result: Moved from problem clone to new clone mysql-test/t/ndb_dd_sql_features.test: Moved from problem clone to new clone mysql-test/r/ndb_dd_sql_features.result: Moved from problem clone to new clone mysql-test/r/ndb_dd_basic.result: Moved from problem clone to new clone mysql-test/t/ndb_dd_dump.test: Moved from problem clone to new clone mysql-test/t/ndb_dd_basic.test: Moved from problem clone to new clone mysql-test/t/ndb_dd_disk2memory.test: Moved from problem clone to new clone mysql-test/r/ndb_dd_disk2memory.result: Moved from problem clone to new clone
Diffstat (limited to 'mysql-test/t/ndb_dd_basic.test')
-rw-r--r--mysql-test/t/ndb_dd_basic.test15
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/t/ndb_dd_basic.test b/mysql-test/t/ndb_dd_basic.test
index 9df2cfb0371..08a4053aa29 100644
--- a/mysql-test/t/ndb_dd_basic.test
+++ b/mysql-test/t/ndb_dd_basic.test
@@ -345,6 +345,21 @@ DELETE FROM t1 WHERE a=2;
SELECT COUNT(*) FROM t1;
DROP TABLE t1;
+#############################
+# Customer posted order by test case
+# Org in ndb_dd_advance.test
+#############################
+
+create table test.t1 (f1 varchar(50) primary key, f2 text,f3 int)
+TABLESPACE ts1 STORAGE DISK engine=NDB;
+insert into test.t1 (f1,f2,f3)VALUES("111111","aaaaaa",1);
+insert into test.t1 (f1,f2,f3)VALUES("222222","bbbbbb",2);
+select * from test.t1 order by f1;
+select f1,f2 from test.t1 order by f2;
+select f2 from test.t1 order by f2;
+select f1,f2 from test.t1 order by f1;
+drop table test.t1;
+
###################
# Test Cleanup
###################