mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Merge remote-tracking branch 'origin/10.2' into bb-10.2-ext
This commit is contained in:
@@ -3199,7 +3199,7 @@ public:
|
||||
virtual int read_range_next();
|
||||
void set_end_range(const key_range *end_key);
|
||||
int compare_key(key_range *range);
|
||||
int compare_key2(key_range *range);
|
||||
int compare_key2(key_range *range) const;
|
||||
virtual int ft_init() { return HA_ERR_WRONG_COMMAND; }
|
||||
void ft_end() { ft_handler=NULL; }
|
||||
virtual FT_INFO *ft_init_ext(uint flags, uint inx,String *key)
|
||||
@@ -3949,10 +3949,16 @@ private:
|
||||
void mark_trx_read_write_internal();
|
||||
bool check_table_binlog_row_based_internal(bool binlog_row);
|
||||
|
||||
/* Private helpers */
|
||||
protected:
|
||||
/*
|
||||
These are intended to be used only by handler::ha_xxxx() functions
|
||||
However, engines that implement read_range_XXX() (like MariaRocks)
|
||||
or embed other engines (like ha_partition) may need to call these also
|
||||
*/
|
||||
inline void increment_statistics(ulong SSV::*offset) const;
|
||||
inline void decrement_statistics(ulong SSV::*offset) const;
|
||||
|
||||
private:
|
||||
/*
|
||||
Low-level primitives for storage engines. These should be
|
||||
overridden by the storage engine class. To call these methods, use
|
||||
|
||||
Reference in New Issue
Block a user