1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Merge mysql.com:/home/psergey/mysql-4.1-nov08-push

into mysql.com:/home/psergey/mysql-5.0-oct08-push
This commit is contained in:
sergefp@mysql.com
2005-11-09 10:12:58 +03:00
3 changed files with 19 additions and 0 deletions

View File

@@ -614,6 +614,13 @@ create table t2 (
primary key (a1)
) select a1,a2,a3,a4,a5,a6,a7,a8,a9 from t1 ;
# Test the default value
drop table t2;
create table t2 ( a int default 3, b int default 3)
select a1,a2 from t1;
show create table t2;
drop table t1, t2;
# End of 4.1 tests