Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
c55ac34f
Commit
c55ac34f
authored
Sep 20, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some fixes for Gemini
parent
1ac9e1e6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
acinclude.m4
acinclude.m4
+1
-2
sql-bench/server-cfg.sh
sql-bench/server-cfg.sh
+1
-0
sql/field.cc
sql/field.cc
+1
-1
No files found.
acinclude.m4
View file @
c55ac34f
...
...
@@ -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
...
...
sql-bench/server-cfg.sh
View file @
c55ac34f
...
...
@@ -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
;
...
...
sql/field.cc
View file @
c55ac34f
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment