diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2014-12-03 14:07:43 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2014-12-03 16:45:02 +0400 |
commit | ae8237995790f5e3d4769f08db5324791e39c197 (patch) | |
tree | 323ba0713ab244b6551b40eac81b7046e22a5c63 /sql/unireg.h | |
parent | cfb7ee1cba9416a817708d4e93458668729a2668 (diff) | |
download | mariadb-git-mdev-60-merge.tar.gz |
MDEV-60 Support for Spatial Reference systems for the GIS data.mdev-60-merge
The GEOMETRY field metadata is stored in the FRM file.
SRID for a spatial column now can be stored, it was added to the CREATE TABLE syntax,
so the AddGeometryData() stored procedure is now possible. Script adding the required Add/DropGeometryColumn sp-s added.
Diffstat (limited to 'sql/unireg.h')
-rw-r--r-- | sql/unireg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/unireg.h b/sql/unireg.h index fd54ed12f34..7c235e2fcba 100644 --- a/sql/unireg.h +++ b/sql/unireg.h @@ -182,6 +182,7 @@ enum extra2_frm_value_type { EXTRA2_TABLEDEF_VERSION=0, EXTRA2_DEFAULT_PART_ENGINE=1, + EXTRA2_GIS=2, #define EXTRA2_ENGINE_IMPORTANT 128 |