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
7ffd7fe9
Commit
7ffd7fe9
authored
May 25, 2018
by
Sergey Vojtovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup isnan() portability checks
parent
bc469a0b
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1 addition
and
23 deletions
+1
-23
cmake/os/Windows.cmake
cmake/os/Windows.cmake
+0
-1
config.h.cmake
config.h.cmake
+0
-2
configure.cmake
configure.cmake
+0
-1
include/my_global.h
include/my_global.h
+0
-8
sql/field.cc
sql/field.cc
+1
-1
storage/heap/hp_hash.c
storage/heap/hp_hash.c
+0
-2
storage/maria/ma_key.c
storage/maria/ma_key.c
+0
-2
storage/maria/ma_sp_key.c
storage/maria/ma_sp_key.c
+0
-2
storage/myisam/mi_key.c
storage/myisam/mi_key.c
+0
-2
storage/myisam/sp_key.c
storage/myisam/sp_key.c
+0
-2
No files found.
cmake/os/Windows.cmake
View file @
7ffd7fe9
...
...
@@ -261,7 +261,6 @@ CHECK_SYMBOL_REPLACEMENT(S_IROTH _S_IREAD sys/stat.h)
CHECK_SYMBOL_REPLACEMENT
(
S_IFIFO _S_IFIFO sys/stat.h
)
CHECK_SYMBOL_REPLACEMENT
(
SIGQUIT SIGTERM signal.h
)
CHECK_SYMBOL_REPLACEMENT
(
SIGPIPE SIGINT signal.h
)
CHECK_SYMBOL_REPLACEMENT
(
isnan _isnan
"math.h;float.h"
)
CHECK_FUNCTION_REPLACEMENT
(
popen _popen
)
CHECK_FUNCTION_REPLACEMENT
(
pclose _pclose
)
CHECK_FUNCTION_REPLACEMENT
(
access _access
)
...
...
config.h.cmake
View file @
7ffd7fe9
...
...
@@ -161,7 +161,6 @@
#cmakedefine gmtime_r @gmtime_r@
#cmakedefine HAVE_IN_ADDR_T 1
#cmakedefine HAVE_INITGROUPS 1
#cmakedefine HAVE_ISNAN 1
#cmakedefine HAVE_LARGE_PAGE_OPTION 1
#cmakedefine HAVE_LDIV 1
#cmakedefine HAVE_LRAND48 1
...
...
@@ -419,7 +418,6 @@
#cmakedefine mode_t @mode_t@
#cmakedefine SIGQUIT @SIGQUIT@
#cmakedefine SIGPIPE @SIGPIPE@
#cmakedefine isnan @isnan@
#cmakedefine popen @popen@
#cmakedefine pclose @pclose@
#cmakedefine ssize_t @ssize_t@
...
...
configure.cmake
View file @
7ffd7fe9
...
...
@@ -478,7 +478,6 @@ CHECK_SYMBOL_EXISTS(FIONREAD "sys/filio.h" FIONREAD_IN_SYS_FILIO)
CHECK_SYMBOL_EXISTS
(
gettimeofday
"sys/time.h"
HAVE_GETTIMEOFDAY
)
CHECK_SYMBOL_EXISTS
(
log2 math.h HAVE_LOG2
)
CHECK_SYMBOL_EXISTS
(
isnan math.h HAVE_ISNAN
)
CHECK_SYMBOL_EXISTS
(
rint math.h HAVE_RINT
)
#
...
...
include/my_global.h
View file @
7ffd7fe9
...
...
@@ -828,16 +828,8 @@ inline unsigned long long my_double2ulonglong(double d)
#define SIZE_T_MAX (~((size_t) 0))
#endif
#ifndef HAVE_ISNAN
#define isnan(x) ((x) != (x))
#endif
#define my_isnan(x) isnan(x)
#ifdef __cplusplus
#include <cmath>
#ifndef isnan
#define isnan(X) std::isnan(X)
#endif
#endif
/* Define missing math constants. */
...
...
sql/field.cc
View file @
7ffd7fe9
...
...
@@ -4683,7 +4683,7 @@ int truncate_double(double *nr, uint field_length, uint dec,
int
error
=
0
;
double
res
=
*
nr
;
if
(
isnan
(
res
))
if
(
std
::
isnan
(
res
))
{
*
nr
=
0
;
return
-
1
;
...
...
storage/heap/hp_hash.c
View file @
7ffd7fe9
...
...
@@ -754,7 +754,6 @@ uint hp_rb_make_key(HP_KEYDEF *keydef, uchar *key,
uchar
*
pos
=
(
uchar
*
)
rec
+
seg
->
start
;
DBUG_ASSERT
(
seg
->
type
!=
HA_KEYTYPE_BIT
);
#ifdef HAVE_ISNAN
if
(
seg
->
type
==
HA_KEYTYPE_FLOAT
)
{
float
nr
;
...
...
@@ -778,7 +777,6 @@ uint hp_rb_make_key(HP_KEYDEF *keydef, uchar *key,
continue
;
}
}
#endif
pos
+=
length
;
while
(
length
--
)
{
...
...
storage/maria/ma_key.c
View file @
7ffd7fe9
...
...
@@ -279,7 +279,6 @@ MARIA_KEY *_ma_make_key(MARIA_HA *info, MARIA_KEY *int_key, uint keynr,
}
else
if
(
keyseg
->
flag
&
HA_SWAP_KEY
)
{
/* Numerical column */
#ifdef HAVE_ISNAN
if
(
type
==
HA_KEYTYPE_FLOAT
)
{
float
nr
;
...
...
@@ -303,7 +302,6 @@ MARIA_KEY *_ma_make_key(MARIA_HA *info, MARIA_KEY *int_key, uint keynr,
continue
;
}
}
#endif
pos
+=
length
;
while
(
length
--
)
{
...
...
storage/maria/ma_sp_key.c
View file @
7ffd7fe9
...
...
@@ -77,7 +77,6 @@ MARIA_KEY *_ma_sp_make_key(MARIA_HA *info, MARIA_KEY *ret_key, uint keynr,
DBUG_ASSERT
(
keyseg
->
type
==
HA_KEYTYPE_DOUBLE
);
val
=
mbr
[
start
/
sizeof
(
double
)];
#ifdef HAVE_ISNAN
if
(
isnan
(
val
))
{
bzero
(
key
,
length
);
...
...
@@ -85,7 +84,6 @@ MARIA_KEY *_ma_sp_make_key(MARIA_HA *info, MARIA_KEY *ret_key, uint keynr,
len
+=
length
;
continue
;
}
#endif
if
(
keyseg
->
flag
&
HA_SWAP_KEY
)
{
...
...
storage/myisam/mi_key.c
View file @
7ffd7fe9
...
...
@@ -150,7 +150,6 @@ uint _mi_make_key(register MI_INFO *info, uint keynr, uchar *key,
}
else
if
(
keyseg
->
flag
&
HA_SWAP_KEY
)
{
/* Numerical column */
#ifdef HAVE_ISNAN
if
(
type
==
HA_KEYTYPE_FLOAT
)
{
float
nr
;
...
...
@@ -174,7 +173,6 @@ uint _mi_make_key(register MI_INFO *info, uint keynr, uchar *key,
continue
;
}
}
#endif
pos
+=
length
;
while
(
length
--
)
{
...
...
storage/myisam/sp_key.c
View file @
7ffd7fe9
...
...
@@ -66,7 +66,6 @@ uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key,
DBUG_ASSERT
(
keyseg
->
type
==
HA_KEYTYPE_DOUBLE
);
val
=
mbr
[
start
/
sizeof
(
double
)];
#ifdef HAVE_ISNAN
if
(
isnan
(
val
))
{
bzero
(
key
,
length
);
...
...
@@ -74,7 +73,6 @@ uint sp_make_key(register MI_INFO *info, uint keynr, uchar *key,
len
+=
length
;
continue
;
}
#endif
if
(
keyseg
->
flag
&
HA_SWAP_KEY
)
{
...
...
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