1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Merge mysql.com:/home/hf/work/20691/my50-20691

into  mysql.com:/home/hf/work/20691/my51-20691
This commit is contained in:
holyfoot/hf@hfmain.(none)
2007-02-13 01:22:43 +04:00
5 changed files with 38 additions and 3 deletions

View File

@@ -429,6 +429,14 @@ create table t1 select GeomFromText('point(1 1)');
desc t1;
drop table t1;
#
# Bug #20691 (DEFAULT over NOT NULL field)
#
create table t1 (g geometry not null);
--error ER_CANT_CREATE_GEOMETRY_OBJECT
insert into t1 values(default);
drop table t1;
#
# Bug #11335 View redefines column types
#