summaryrefslogtreecommitdiff
path: root/mysql-test/r/alter_table.result
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2002-06-04 08:29:08 +0300
committerunknown <monty@hundin.mysql.fi>2002-06-04 08:29:08 +0300
commitdaff6c5115b74c611222095fff40d075909ae454 (patch)
treed273a823d7f94fdea3e5775b8d8cd0b912812b0f /mysql-test/r/alter_table.result
parent08526ba32d9f4c353640b928edfdde862efc8596 (diff)
parentad4e68655565878b31ac67ef1819d9ef29312c51 (diff)
downloadmariadb-git-daff6c5115b74c611222095fff40d075909ae454.tar.gz
merge with 4.0 to get last fixes to last merge
BitKeeper/etc/logging_ok: auto-union Docs/manual.texi: Auto merged client/mysqltest.c: Auto merged mysql-test/r/alter_table.result: Auto merged mysql-test/r/func_math.result: Auto merged sql/hostname.cc: Auto merged sql/item_cmpfunc.cc: Auto merged sql/item_cmpfunc.h: Auto merged sql/mysqld.cc: Auto merged sql/sql_analyse.cc: Auto merged sql/sql_parse.cc: Auto merged sql/sql_table.cc: Auto merged sql/sql_yacc.yy: merge with 4.0
Diffstat (limited to 'mysql-test/r/alter_table.result')
-rw-r--r--mysql-test/r/alter_table.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/alter_table.result b/mysql-test/r/alter_table.result
index ab03cfde2c8..0356f14db8a 100644
--- a/mysql-test/r/alter_table.result
+++ b/mysql-test/r/alter_table.result
@@ -114,3 +114,11 @@ i
3
4
drop table t1;
+create table t1 (i int unsigned not null auto_increment primary key);
+alter table t1 rename t2;
+alter table t2 rename t1, add c char(10) comment "no comment";
+show columns from t1;
+Field Type Null Key Default Extra
+i int(10) unsigned PRI NULL auto_increment
+c char(10) YES NULL
+drop table t1;