mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
99ab562a92
All variables handling sizes that were uint are now size_t. The variable connect_work_size is now ulong (was uint); Also make Json functiosn to allocate a larger memory (M=9 was 7) modified: storage/connect/global.h modified: storage/connect/ha_connect.cc modified: storage/connect/json.cpp modified: storage/connect/jsonudf.cpp modified: storage/connect/plgdbutl.cpp modified: storage/connect/plugutil.cpp modified: storage/connect/user_connect.cc - Fix uninitialised variable (pretty) in Json_File. Make Jbin_file accept the same arguments as Json_File ones. modified: storage/connect/jsonudf.cpp - Change the Level option to Depth (the word currently used) (Level being still accepted) modified: storage/connect/mongo.cpp modified: storage/connect/tabjson.cpp modified: storage/connect/tabxml.cpp - Suppress 2nd argument default value for MYSQLtoPLG function modified: storage/connect/myutil.h - Allow REST tables to be create not specifying a file_name modified: storage/connect/tabrest.cpp
14 lines
559 B
C
14 lines
559 B
C
/***********************************************************************/
|
|
/* Prototypes of Functions used externally. */
|
|
/***********************************************************************/
|
|
#ifndef __MYUTIL__H
|
|
#define __MYUTIL__H
|
|
|
|
enum enum_field_types PLGtoMYSQL(int type, bool dbf, char var = 0);
|
|
const char *PLGtoMYSQLtype(int type, bool dbf, char var = 0);
|
|
int MYSQLtoPLG(char *typname, char *var);
|
|
int MYSQLtoPLG(int mytype, char *var);
|
|
PCSZ MyDateFmt(int mytype);
|
|
PCSZ MyDateFmt(char *typname);
|
|
|
|
#endif // __MYUTIL__H
|