1
0
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-07-02T04:12:21+0900

This commit is contained in:
Kentoku SHIBA
2015-07-02 04:12:21 +09:00
parent 0319304893
commit 06913d0162
329 changed files with 11220 additions and 2156 deletions

View File

@@ -57,6 +57,17 @@ namespace mrn {
double value;
float8get(value, source);
*dest = value;
#endif
DBUG_VOID_RETURN;
}
void decode(long long int *dest, const uchar *source) {
MRN_DBUG_ENTER_FUNCTION();
#ifdef MRN_DEST_IS_POINTER
longlongget(dest, source);
#else
long long int value;
longlongget(value, source);
*dest = value;
#endif
DBUG_VOID_RETURN;
}