1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Fix for bug #12281 (Geometry: crash in trigger)

Field_geom lack size_of method
This commit is contained in:
hf@deer.(none)
2005-08-05 20:19:51 +05:00
parent 3a52916436
commit 4aeded63fd

View File

@@ -1204,6 +1204,7 @@ public:
int store(longlong nr);
int store_decimal(const my_decimal *);
void get_key_image(char *buff,uint length,imagetype type);
uint size_of() const { return sizeof(*this); }
};
#endif /*HAVE_SPATIAL*/