summaryrefslogtreecommitdiff
path: root/mysql-test/t/select.test
diff options
context:
space:
mode:
authorunknown <mikef@nslinux.bedford.progress.com>2001-03-21 15:34:16 -0500
committerunknown <mikef@nslinux.bedford.progress.com>2001-03-21 15:34:16 -0500
commitb4098ead8324790a52a70b4b35a3e83bc4c7ed54 (patch)
tree5306fccfc0c0c42aabf0e2dd6bf883cdecc3ed03 /mysql-test/t/select.test
parent4b56b0ee43843dae2f5503718bd851f8debbd561 (diff)
downloadmariadb-git-b4098ead8324790a52a70b4b35a3e83bc4c7ed54.tar.gz
Add support for Gemini table handler, Monty has checked and approved
Fix bug when read return error acconfig.h: Add Gemini to configure acinclude.m4: Add Gemini to configure include/my_base.h: Add error codes for tables handlers mysql-test/t/select.test: Force temporary tables to MyISAM sql-bench/server-cfg.sh: Allow Gemini to run sql-bench sql/Makefile.am: Add Gemini to configure sql/handler.cc: Add support for Gemini table handler sql/handler.h: Add support for Gemini table handler sql/lex.h: Add support for Gemini table handler sql/mysqld.cc: Add support for Gemini table handler sql/opt_range.cc: Fix bug when read return error sql/records.cc: Fix bug when read return error sql/sql_class.cc: Add support for Gemini table handler sql/sql_class.h: Add support for Gemini table handler sql/sql_lex.h: Add support for Gemini table handler sql/sql_rename.cc: Add commit for table rename sql/sql_table.cc: Add commit for table rename BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'mysql-test/t/select.test')
-rw-r--r--mysql-test/t/select.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/select.test b/mysql-test/t/select.test
index 64976b4efd6..10079ba2549 100644
--- a/mysql-test/t/select.test
+++ b/mysql-test/t/select.test
@@ -1377,7 +1377,7 @@ INSERT INTO t3 (period,name,companynr,price,price2) VALUES (1008,"tucked",311,23
INSERT INTO t3 (period,name,companynr,price,price2) VALUES (1009,"gems",447,2374834,9872392);
INSERT INTO t3 (period,name,companynr,price,price2) VALUES (1010,"clinker",512,786542,76234234);
-create temporary table tmp select * from t3;
+create temporary table tmp type = myisam select * from t3;
insert into t3 select * from tmp;
insert into tmp select * from t3;