mirror of
https://github.com/MariaDB/server.git
synced 2026-05-09 16:44:29 +02:00
Some fixes for Gemini
This commit is contained in:
parent
1ac9e1e678
commit
c55ac34fef
3 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue