#ifndef ZABBIX_DBUPGRADE_MACROS_H
#define ZABBIX_DBUPGRADE_MACROS_H
#define ZBX_DBPATCH_FUNCTION_UPDATE_NAME 0x01
#define ZBX_DBPATCH_FUNCTION_UPDATE_PARAM 0x02
#define ZBX_DBPATCH_FUNCTION_UPDATE (ZBX_DBPATCH_FUNCTION_UPDATE_NAME | \
ZBX_DBPATCH_FUNCTION_UPDATE_PARAM)
#define ZBX_DBPATCH_FUNCTION_CREATE 0x40
#define ZBX_DBPATCH_FUNCTION_DELETE 0x80
ZBX_VECTOR_DECL(strloc, zbx_strloc_t)
int db_rename_macro(zbx_db_result_t result, const char *table, const char *pkey, zbx_field_len_t *fields,
int fields_num, const char *oldmacro, const char *newmacro);
void dbpatch_convert_simple_macro(const char *expression, const zbx_token_simple_macro_t *data, int more,
int dbpatch_is_time_function(const char *name, size_t len);
void dbpatch_update_hist2common(zbx_dbpatch_function_t *function, int extended, char **expression);
void dbpatch_convert_function(zbx_dbpatch_function_t *function, char **replace, zbx_vector_ptr_t *functions);
void dbpatch_function_free(zbx_dbpatch_function_t *func);
int dbpatch_is_composite_constant(const char *str);
void dbpatch_strcpy_alloc_quoted_compat(char **str, size_t *str_alloc, size_t *str_offset, const char *source);
void dbpatch_convert_params(char **out, const char *parameter, const zbx_vector_strloc_t *params, ...);
zbx_dbpatch_function_t *dbpatch_new_function(zbx_uint64_t functionid, zbx_uint64_t itemid, const char *name,
const char *parameter, unsigned char flags);