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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
f4ebcaff
Commit
f4ebcaff
authored
Feb 27, 2004
by
Greg@greg-laptop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes to fix errors encountered in test builds on Windows.
parent
86932a0b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
7 deletions
+8
-7
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
VC++Files/innobase/innobase.dsp
VC++Files/innobase/innobase.dsp
+0
-4
VC++Files/libmysql/libmysql.dsp
VC++Files/libmysql/libmysql.dsp
+4
-0
sql/log_event.cc
sql/log_event.cc
+1
-1
sql/opt_range.cc
sql/opt_range.cc
+2
-2
No files found.
BitKeeper/etc/logging_ok
View file @
f4ebcaff
...
...
@@ -2,6 +2,7 @@ Administrador@light.
Administrator@co3064164-a.
Administrator@co3064164-a.rochd1.qld.optushome.com.au
Administrator@fred.
Greg@greg-laptop.
Miguel@light.local
Sinisa@sinisa.nasamreza.org
ahlentz@co3064164-a.rochd1.qld.optusnet.com.au
...
...
VC++Files/innobase/innobase.dsp
View file @
f4ebcaff
...
...
@@ -280,10 +280,6 @@ SOURCE=.\mtr\mtr0mtr.c
# End Source File
# Begin Source File
SOURCE=.\odbc\odbc0odbc.c
# End Source File
# Begin Source File
SOURCE=.\os\os0file.c
# End Source File
# Begin Source File
...
...
VC++Files/libmysql/libmysql.dsp
View file @
f4ebcaff
...
...
@@ -463,6 +463,10 @@ SOURCE=..\strings\strxmov.c
# End Source File
# Begin Source File
SOURCE=..\strings\strxnmov.c
# End Source File
# Begin Source File
SOURCE=..\mysys\thr_mutex.c
# End Source File
# Begin Source File
...
...
sql/log_event.cc
View file @
f4ebcaff
...
...
@@ -1556,7 +1556,7 @@ Create_file_log_event::Create_file_log_event(const char* buf, int len,
We must make copy of 'buf' as this event may have to live over a
rotate log entry when used in mysqlbinlog
*/
if
(
!
(
event_buf
=
my_memdup
(
buf
,
len
,
MYF
(
MY_WME
)))
||
if
(
!
(
event_buf
=
my_memdup
(
(
byte
*
)
buf
,
len
,
MYF
(
MY_WME
)))
||
(
copy_log_event
(
event_buf
,
len
,
old_format
)))
DBUG_VOID_RETURN
;
...
...
sql/opt_range.cc
View file @
f4ebcaff
...
...
@@ -2414,9 +2414,9 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key,
}
/* Get range for retrieving rows in QUICK_SELECT::get_next */
if
(
!
(
range
=
new
QUICK_RANGE
(
param
->
min_key
,
if
(
!
(
range
=
new
QUICK_RANGE
(
(
const
char
*
)
param
->
min_key
,
(
uint
)
(
tmp_min_key
-
param
->
min_key
),
param
->
max_key
,
(
const
char
*
)
param
->
max_key
,
(
uint
)
(
tmp_max_key
-
param
->
max_key
),
flag
)))
return
1
;
// out of memory
...
...
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