1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-16248 Row based replication to spider with float column fails on delete/update (#1354)

This commit is contained in:
Kentoku SHIBA
2019-07-06 22:38:43 +09:00
committed by GitHub
parent fb3998c351
commit 4a739d7650
17 changed files with 632 additions and 3 deletions

View File

@@ -202,6 +202,13 @@ class spider_db_mysql_util: public spider_db_mbase_util
public:
spider_db_mysql_util();
~spider_db_mysql_util();
int append_column_value(
ha_spider *spider,
spider_string *str,
Field *field,
const uchar *new_ptr,
CHARSET_INFO *access_charset
);
};
class spider_db_mariadb_util: public spider_db_mbase_util
@@ -213,6 +220,13 @@ public:
spider_string *str,
sql_mode_t sql_mode
);
int append_column_value(
ha_spider *spider,
spider_string *str,
Field *field,
const uchar *new_ptr,
CHARSET_INFO *access_charset
);
};
class spider_db_mbase_row: public spider_db_row