mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Optimized GIS functions
This commit is contained in:
@ -20,11 +20,21 @@
|
||||
struct st_table;
|
||||
class Field;
|
||||
|
||||
typedef struct lex_string {
|
||||
typedef struct st_lex_string
|
||||
{
|
||||
char *str;
|
||||
uint length;
|
||||
} LEX_STRING;
|
||||
|
||||
typedef struct st_lex_string_with_init :public st_lex_string
|
||||
{
|
||||
st_lex_string_with_init(const char *str_arg, uint length_arg)
|
||||
{
|
||||
str= (char*) str_arg;
|
||||
length= length_arg;
|
||||
}
|
||||
} LEX_STRING_WITH_INIT;
|
||||
|
||||
|
||||
typedef struct st_date_time_format {
|
||||
uchar positions[8];
|
||||
|
Reference in New Issue
Block a user