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
b312b97a
Commit
b312b97a
authored
Jan 28, 2003
by
venu@myvenu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for windows specific errors
parent
79e1fd8d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/violite.h
include/violite.h
+1
-1
myisam/mi_check.c
myisam/mi_check.c
+1
-1
No files found.
include/violite.h
View file @
b312b97a
...
...
@@ -32,7 +32,7 @@ extern "C" {
#endif
/* __cplusplus */
enum
enum_vio_type
{
VIO_CLOSED
,
VIO_TYPE_TCPIP
,
VIO_TYPE_SOCKET
,
VIO_TYPE_NAMEDPIPE
,
VIO_TYPE_SSL
};
VIO_TYPE_NAMEDPIPE
,
VIO_TYPE_SSL
,
VIO_TYPE_SHARED_MEMORY
};
#ifndef __WIN__
#define HANDLE void *
...
...
myisam/mi_check.c
View file @
b312b97a
...
...
@@ -3193,7 +3193,7 @@ static int sort_ft_key_write(MI_SORT_PARAM *sort_param, const void *a)
}
/* storing the key in the buffer. */
memcpy
(
ft_buf
->
buf
,
a
+
val_off
,
val_len
);
memcpy
(
ft_buf
->
buf
,
(
char
*
)
a
+
val_off
,
val_len
);
ft_buf
->
buf
+=
val_len
;
if
(
ft_buf
->
buf
<
ft_buf
->
end
)
return
0
;
...
...
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