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

prepare for adding new connectors for Spider

Conflicts:
	storage/spider/spd_conn.cc
This commit is contained in:
Kentoku SHIBA
2020-03-03 08:11:46 +09:00
parent 23c8adda74
commit 94861b83f4
16 changed files with 1467 additions and 404 deletions

View File

@@ -199,6 +199,7 @@ public:
spider_string *str
);
#endif
bool append_charset_name_before_string();
};
class spider_db_mysql_util: public spider_db_mbase_util
@@ -1672,6 +1673,18 @@ public:
spider_fields *fields
);
#endif
#ifdef HANDLER_HAS_DIRECT_UPDATE_ROWS
bool check_direct_update(
st_select_lex *select_lex,
longlong select_limit,
longlong offset_limit
);
bool check_direct_delete(
st_select_lex *select_lex,
longlong select_limit,
longlong offset_limit
);
#endif
};
class spider_mysql_handler: public spider_mbase_handler