mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Forbid NULL geometry fields
This commit is contained in:
parent
6957a85c24
commit
829af50169
1 changed files with 5 additions and 0 deletions
|
@ -478,6 +478,11 @@ int mysql_create_table(THD *thd,const char *db, const char *table_name,
|
|||
blob_columns++;
|
||||
break;
|
||||
case FIELD_TYPE_GEOMETRY:
|
||||
if (!(sql_field->flags & NOT_NULL_FLAG))
|
||||
{
|
||||
my_error(ER_BAD_NULL_ERROR, MYF(0), sql_field->field_name);
|
||||
DBUG_RETURN(-1);
|
||||
}
|
||||
sql_field->pack_flag=FIELDFLAG_GEOM |
|
||||
pack_length_to_packflag(sql_field->pack_length -
|
||||
portable_sizeof_char_ptr);
|
||||
|
|
Loading…
Reference in a new issue