mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Some fixes for Gemini
This commit is contained in:
@ -1008,8 +1008,7 @@ dnl echo "DBG_GEM1: gemini='$gemini'"
|
||||
gemini_libs="\
|
||||
../gemini/api/libapi.a\
|
||||
../gemini/db/libdb.a\
|
||||
../gemini/dbut/libdbut.a\
|
||||
../gemini/vst/libvst.a"
|
||||
../gemini/dbut/libdbut.a"
|
||||
AC_MSG_RESULT([Using Gemini DB])
|
||||
;;
|
||||
esac
|
||||
|
@ -199,6 +199,7 @@ sub new
|
||||
$main::opt_create_options =~ /type=gemini/i)
|
||||
{
|
||||
$limits{'working_blobs'} = 0; # Blobs not implemented yet
|
||||
$limits{'max_tables'} = 500;
|
||||
}
|
||||
|
||||
return $self;
|
||||
|
@ -4122,7 +4122,7 @@ ulonglong Field_blob::get_id(const char *from)
|
||||
ulonglong id = 0;
|
||||
ulong length=get_length(from);
|
||||
if (length)
|
||||
uint8korr(id, from+packlength);
|
||||
id=uint8korr(from+packlength);
|
||||
return id;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user