mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
syntax fix
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
|
||||
#define PARSE_FILE_TIMESTAMPLENGTH 19
|
||||
|
||||
typedef enum {
|
||||
enum file_opt_type {
|
||||
FILE_OPTIONS_STRING, /* String (LEX_STRING) */
|
||||
FILE_OPTIONS_ESTRING, /* Escaped string (LEX_STRING) */
|
||||
FILE_OPTIONS_ULONGLONG, /* ulonglong parapeter (ulonglong) */
|
||||
@@ -28,13 +28,13 @@ typedef enum {
|
||||
FILE_OPTIONS_TIMESTAMP, /* timestamp (LEX_STRING have to be
|
||||
allocated with length 20 (19+1) */
|
||||
FILE_OPTIONS_STRLIST /* list of strings (List<char*>) */
|
||||
} file_opt_type;
|
||||
|
||||
};
|
||||
|
||||
struct File_option
|
||||
{
|
||||
LEX_STRING name; /* Name of the option */
|
||||
int offset; /* offset to base address of value */
|
||||
enum file_opt_type type; /* Option type */
|
||||
int offset; /* offset to base address of value */
|
||||
file_opt_type type; /* Option type */
|
||||
};
|
||||
|
||||
class File_parser;
|
||||
|
||||
Reference in New Issue
Block a user