mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Update Mroonga to the latest version on 2015-02-17T13:34:27+0900
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
namespace mrn {
|
||||
class DatabaseManager {
|
||||
public:
|
||||
DatabaseManager(grn_ctx *ctx);
|
||||
DatabaseManager(grn_ctx *ctx, mysql_mutex_t *mutex);
|
||||
~DatabaseManager(void);
|
||||
bool init(void);
|
||||
int open(const char *path, grn_obj **db);
|
||||
@@ -38,8 +38,7 @@ namespace mrn {
|
||||
private:
|
||||
grn_ctx *ctx_;
|
||||
grn_hash *cache_;
|
||||
pthread_mutex_t mutex_;
|
||||
bool mutex_initialized_;
|
||||
mysql_mutex_t *mutex_;
|
||||
|
||||
void mkdir_p(const char *directory);
|
||||
void ensure_database_directory(void);
|
||||
|
Reference in New Issue
Block a user