bug #21790 (UNKNOWN ERROR message in geometry)

We issued UNKNOWN ERROR initially in this place and forgot to
fix it when we implemented informative error message for this


mysql-test/r/gis-rtree.result:
  test result
mysql-test/t/gis-rtree.test:
  test case
sql/handler.cc:
  let's issue informative error message here
This commit is contained in:
unknown 2006-10-01 16:36:26 +05:00
commit b8ab82a629
3 changed files with 22 additions and 2 deletions

View file

@ -232,3 +232,15 @@ CHECK TABLE t1 EXTENDED;
DROP TABLE t1;
# End of 4.1 tests
#
# bug #21790 (UNKNOWN ERROR on NULLs in RTree)
#
CREATE TABLE t1(foo GEOMETRY NOT NULL, SPATIAL INDEX(foo) );
--error 1048
INSERT INTO t1(foo) VALUES (NULL);
--error 1416
INSERT INTO t1() VALUES ();
--error 1416
INSERT INTO t1(foo) VALUES ('');
DROP TABLE t1;