1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge mysql.com:/home/ram/work/b26038/b26038.5.0

into  mysql.com:/home/ram/work/b26038/b26038.5.1
This commit is contained in:
ramil/ram@ramil.myoffice.izhnet.ru
2007-03-05 17:12:37 +04:00
10 changed files with 153 additions and 47 deletions

View File

@ -166,14 +166,14 @@ insert IGNORE into t1 (a) values ('Garbage');
drop table t1;
create table t1 (pk integer primary key auto_increment, fl geometry);
create table t1 (pk integer primary key auto_increment, fl geometry not null);
--error 1416
insert into t1 (fl) values (1);
--error 1416
insert into t1 (fl) values (1.11);
--error 1416
insert into t1 (fl) values ("qwerty");
--error 1416
--error 1048
insert into t1 (fl) values (pointfromtext('point(1,1)'));
drop table t1;