Skip to content

Commit

Permalink
Merge 10.5 into 10.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Nov 20, 2022
2 parents 9aea7d8 + c9ccd97 commit 6b083ce
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions storage/spider/spd_conn.cc
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ uchar *spider_conn_get_key(
DBUG_ENTER("spider_conn_get_key");
*length = conn->conn_key_length;
DBUG_PRINT("info",("spider conn_kind=%u", conn->conn_kind));
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
spider_print_keys(conn->conn_key, conn->conn_key_length);
#endif
DBUG_RETURN((uchar*) conn->conn_key);
Expand Down Expand Up @@ -990,19 +990,19 @@ SPIDER_CONN *spider_get_conn(
if (conn_kind == SPIDER_CONN_KIND_MYSQL)
{
#endif
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
spider_print_keys(conn_key, share->conn_keys_lengths[link_idx]);
#endif
#if defined(HS_HAS_SQLCOM) && defined(HAVE_HANDLERSOCKET)
} else if (conn_kind == SPIDER_CONN_KIND_HS_READ)
{
conn_key = share->hs_read_conn_keys[link_idx];
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
spider_print_keys(conn_key, share->hs_read_conn_keys_lengths[link_idx]);
#endif
} else {
conn_key = share->hs_write_conn_keys[link_idx];
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
spider_print_keys(conn_key, share->hs_write_conn_keys_lengths[link_idx]);
#endif
}
Expand Down
14 changes: 7 additions & 7 deletions storage/spider/spd_db_mysql.cc
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ int spider_db_mbase_result::fetch_table_status(
#endif
} else
stat.create_time = (time_t) 0;
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
{
struct tm *ts, tmp_ts;
char buf[80];
Expand Down Expand Up @@ -962,7 +962,7 @@ int spider_db_mbase_result::fetch_table_status(
#endif
} else
stat.check_time = (time_t) 0;
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
{
struct tm *ts, tmp_ts;
char buf[80];
Expand Down Expand Up @@ -1041,7 +1041,7 @@ int spider_db_mbase_result::fetch_table_status(
#endif
} else
stat.create_time = (time_t) 0;
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
{
struct tm *ts, tmp_ts;
char buf[80];
Expand All @@ -1066,7 +1066,7 @@ int spider_db_mbase_result::fetch_table_status(
#endif
} else
stat.update_time = (time_t) 0;
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
{
struct tm *ts, tmp_ts;
char buf[80];
Expand All @@ -1091,7 +1091,7 @@ int spider_db_mbase_result::fetch_table_status(
#endif
} else
stat.check_time = (time_t) 0;
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
{
struct tm *ts, tmp_ts;
char buf[80];
Expand Down Expand Up @@ -4210,7 +4210,7 @@ int spider_db_mariadb_util::append_column_value(ha_spider *spider,
ptr = tmp_str.get_str();
} else if (field->type() == MYSQL_TYPE_GEOMETRY)
{
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
double xmin, xmax, ymin, ymax;
float8get(xmin, new_ptr);
float8get(xmax, new_ptr + 8);
Expand Down Expand Up @@ -4367,7 +4367,7 @@ int spider_db_mysql_util::append_column_value(
}
tmp_str.length(SIZEOF_STORED_DOUBLE * lcnt);
*/
#ifndef DBUG_OFF
#ifdef DBUG_TRACE
double xmin, xmax, ymin, ymax;
/*
float8store(buf,xmin);
Expand Down
14 changes: 7 additions & 7 deletions storage/spider/spd_db_mysql.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,13 @@ class spider_db_mbase_util: public spider_db_util
spider_string *str
) override;
#endif
bool tables_on_different_db_are_joinable();
bool socket_has_default_value();
bool database_has_default_value();
bool default_file_has_default_value();
bool host_has_default_value();
bool port_has_default_value();
bool append_charset_name_before_string();
bool tables_on_different_db_are_joinable() override;
bool socket_has_default_value() override;
bool database_has_default_value() override;
bool default_file_has_default_value() override;
bool host_has_default_value() override;
bool port_has_default_value() override;
bool append_charset_name_before_string() override;
};

class spider_db_mysql_util: public spider_db_mbase_util
Expand Down
2 changes: 1 addition & 1 deletion storage/spider/spd_table.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4351,7 +4351,7 @@ int spider_set_connect_info_default_dbtable(
));
}

#ifndef DBUG_OFF
#ifdef DBUG_TRACE
void spider_print_keys(
const char *key,
uint length
Expand Down
2 changes: 1 addition & 1 deletion storage/spider/spd_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ int spider_set_connect_info_default_dbtable(
int dbtable_name_length
);

#ifndef DBUG_OFF
#ifdef DBUG_TRACE
void spider_print_keys(
const char *key,
uint length
Expand Down

0 comments on commit 6b083ce

Please sign in to comment.