|
@@ -44,6 +44,7 @@ unsigned int my_retries = 1; /* Number of retries when command fails */
|
|
unsigned int my_server_timezone = 0; /* Use FROM_UNIXTIME() for date conversion */
|
|
unsigned int my_server_timezone = 0; /* Use FROM_UNIXTIME() for date conversion */
|
|
|
|
|
|
unsigned long my_client_ver = 0;
|
|
unsigned long my_client_ver = 0;
|
|
|
|
+int db_mysql_unsigned_type = 0;
|
|
|
|
|
|
struct mysql_counters_h mysql_cnts_h;
|
|
struct mysql_counters_h mysql_cnts_h;
|
|
counter_def_t mysql_cnt_defs[] = {
|
|
counter_def_t mysql_cnt_defs[] = {
|
|
@@ -98,6 +99,7 @@ static param_export_t params[] = {
|
|
{"auto_reconnect", INT_PARAM, &db_mysql_auto_reconnect},
|
|
{"auto_reconnect", INT_PARAM, &db_mysql_auto_reconnect},
|
|
{"insert_delayed", INT_PARAM, &db_mysql_insert_all_delayed},
|
|
{"insert_delayed", INT_PARAM, &db_mysql_insert_all_delayed},
|
|
{"update_affected_found", INT_PARAM, &db_mysql_update_affected_found},
|
|
{"update_affected_found", INT_PARAM, &db_mysql_update_affected_found},
|
|
|
|
+ {"unsigned_type", PARAM_INT, &db_mysql_unsigned_type},
|
|
{0, 0, 0}
|
|
{0, 0, 0}
|
|
};
|
|
};
|
|
|
|
|