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
95e0c72e
Commit
95e0c72e
authored
Nov 14, 2005
by
SergeyV@selena
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed number of compiler errors on win32.
parent
7966c4dd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
VC++Files/mysqlbinlog/mysqlbinlog.vcproj
VC++Files/mysqlbinlog/mysqlbinlog.vcproj
+1
-1
sql/ha_innodb.cc
sql/ha_innodb.cc
+2
-2
sql/spatial.cc
sql/spatial.cc
+2
-0
No files found.
VC++Files/mysqlbinlog/mysqlbinlog.vcproj
View file @
95e0c72e
...
...
@@ -22,7 +22,7 @@
Name=
"VCCLCompilerTool"
Optimization=
"0"
OptimizeForProcessor=
"2"
AdditionalIncludeDirectories=
"../include,../,../sql"
AdditionalIncludeDirectories=
"../include,../,../sql
,../strings
"
PreprocessorDefinitions=
"_DEBUG;SAFEMALLOC;SAFE_MUTEX;_CONSOLE;_WINDOWS;MYSQL_SERVER"
RuntimeLibrary=
"1"
PrecompiledHeaderFile=
".\Debug/mysqlbinlog.pch"
...
...
sql/ha_innodb.cc
View file @
95e0c72e
...
...
@@ -3009,8 +3009,8 @@ ha_innobase::store_key_val_for_row(
if
(
key_part
->
length
>
0
&&
cs
->
mbmaxlen
>
1
)
{
len
=
(
ulint
)
cs
->
cset
->
well_formed_len
(
cs
,
src_start
,
src_start
+
key_part
->
length
,
(
const
char
*
)
src_start
,
(
const
char
*
)
src_start
+
key_part
->
length
,
key_part
->
length
/
cs
->
mbmaxlen
,
&
error
);
}
else
{
...
...
sql/spatial.cc
View file @
95e0c72e
...
...
@@ -178,7 +178,9 @@ static double wkb_get_double(const char *ptr, Geometry::wkbByteOrder bo)
{
double
res
;
if
(
bo
!=
Geometry
::
wkb_xdr
)
{
float8get
(
res
,
ptr
);
}
else
{
char
inv_array
[
8
];
...
...
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