mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Added GIS extension
BitKeeper/etc/ignore: Added myisam/rt_test myisam/sp_test to the ignore list
This commit is contained in:
@ -88,3 +88,41 @@ Item *create_func_version(void);
|
||||
Item *create_func_weekday(Item* a);
|
||||
Item *create_load_file(Item* a);
|
||||
Item *create_wait_for_master_pos(Item* a, Item* b);
|
||||
|
||||
Item *create_func_geometry_from_text(Item* a);
|
||||
Item *create_func_as_text(Item* a);
|
||||
Item *create_func_startpoint(Item* a);
|
||||
Item *create_func_endpoint(Item* a);
|
||||
Item *create_func_exteriorring(Item* a);
|
||||
Item *create_func_centroid(Item* a);
|
||||
Item *create_func_envelope(Item* a);
|
||||
Item *create_func_pointn(Item* a, Item* b);
|
||||
Item *create_func_interiorringn(Item* a, Item* b);
|
||||
Item *create_func_geometryn(Item* a, Item* b);
|
||||
|
||||
Item *create_func_equals(Item* a, Item* b);
|
||||
Item *create_func_disjoint(Item* a, Item* b);
|
||||
Item *create_func_intersects(Item* a, Item* b);
|
||||
Item *create_func_touches(Item* a, Item* b);
|
||||
Item *create_func_crosses(Item* a, Item* b);
|
||||
Item *create_func_within(Item* a, Item* b);
|
||||
Item *create_func_contains(Item* a, Item* b);
|
||||
Item *create_func_overlaps(Item* a, Item* b);
|
||||
|
||||
Item *create_func_isempty(Item* a);
|
||||
Item *create_func_issimple(Item* a);
|
||||
Item *create_func_isclosed(Item* a);
|
||||
|
||||
Item *create_func_geometry_type(Item* a);
|
||||
Item *create_func_dimension(Item* a);
|
||||
Item *create_func_x(Item* a);
|
||||
Item *create_func_y(Item* a);
|
||||
Item *create_func_area(Item* a);
|
||||
Item *create_func_glength(Item* a);
|
||||
|
||||
Item *create_func_numpoints(Item* a);
|
||||
Item *create_func_numinteriorring(Item* a);
|
||||
Item *create_func_numgeometries(Item* a);
|
||||
|
||||
Item *create_func_point(Item* a,Item* b);
|
||||
|
||||
|
Reference in New Issue
Block a user