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
c6b4a742
Commit
c6b4a742
authored
Mar 29, 2008
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed warnings from the fix of 26243
parent
43ca62ce
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
17 deletions
+18
-17
myisam/mi_check.c
myisam/mi_check.c
+1
-1
myisam/mi_keycache.c
myisam/mi_keycache.c
+1
-0
mysys/mf_keycache.c
mysys/mf_keycache.c
+1
-1
sql/examples/ha_tina.cc
sql/examples/ha_tina.cc
+1
-1
sql/item_func.cc
sql/item_func.cc
+1
-1
sql/lock.cc
sql/lock.cc
+1
-1
sql/sql_analyse.cc
sql/sql_analyse.cc
+12
-12
No files found.
myisam/mi_check.c
View file @
c6b4a742
...
...
@@ -1935,7 +1935,7 @@ int mi_sort_index(MI_CHECK *param, register MI_INFO *info, my_string name)
for
(
key
=
0
,
keyinfo
=
&
share
->
keyinfo
[
0
];
key
<
share
->
base
.
keys
;
key
++
,
keyinfo
++
)
if
(
keyinfo
->
key_alg
==
HA_KEY_ALG_RTREE
)
return
0
;
DBUG_RETURN
(
0
)
;
if
(
!
(
param
->
testflag
&
T_SILENT
))
printf
(
"- Sorting index for MyISAM-table '%s'
\n
"
,
name
);
...
...
myisam/mi_keycache.c
View file @
c6b4a742
...
...
@@ -158,4 +158,5 @@ void mi_change_key_cache(KEY_CACHE *old_key_cache,
*/
multi_key_cache_change
(
old_key_cache
,
new_key_cache
);
pthread_mutex_unlock
(
&
THR_LOCK_myisam
);
DBUG_VOID_RETURN
;
}
mysys/mf_keycache.c
View file @
c6b4a742
...
...
@@ -551,7 +551,7 @@ int resize_key_cache(KEY_CACHE *keycache, uint key_cache_block_size,
}
#endif
keycache_pthread_mutex_unlock
(
&
keycache
->
cache_lock
);
return
blocks
;
DBUG_RETURN
(
blocks
)
;
}
...
...
sql/examples/ha_tina.cc
View file @
c6b4a742
...
...
@@ -883,7 +883,7 @@ int ha_tina::delete_all_rows()
DBUG_ENTER
(
"ha_tina::delete_all_rows"
);
if
(
!
records_is_known
)
return
(
my_errno
=
HA_ERR_WRONG_COMMAND
);
DBUG_RETURN
(
my_errno
=
HA_ERR_WRONG_COMMAND
);
/* Invalidate all cached mmap pages */
if
(
free_mmap
(
share
))
...
...
sql/item_func.cc
View file @
c6b4a742
...
...
@@ -5115,7 +5115,7 @@ double Item_func_match::val_real()
DBUG_RETURN
(
-
1.0
);
if
(
key
!=
NO_SUCH_KEY
&&
table
->
null_row
)
/* NULL row from an outer join */
return
0.0
;
DBUG_RETURN
(
0.0
)
;
if
(
join_key
)
{
...
...
sql/lock.cc
View file @
c6b4a742
...
...
@@ -703,7 +703,7 @@ static MYSQL_LOCK *get_lock_data(THD *thd, TABLE **table_ptr, uint count,
{
my_error
(
ER_WRONG_LOCK_OF_SYSTEM_TABLE
,
MYF
(
0
),
table_ptr
[
i
]
->
s
->
db
,
table_ptr
[
i
]
->
s
->
table_name
);
return
0
;
DBUG_RETURN
(
0
)
;
}
}
...
...
sql/sql_analyse.cc
View file @
c6b4a742
...
...
@@ -195,13 +195,13 @@ bool test_if_number(NUM_INFO *info, const char *str, uint str_len)
*/
for
(;
str
!=
end
&&
my_isspace
(
system_charset_info
,
*
str
);
str
++
)
;
if
(
str
==
end
)
return
0
;
DBUG_RETURN
(
0
)
;
if
(
*
str
==
'-'
)
{
info
->
negative
=
1
;
if
(
++
str
==
end
||
*
str
==
'0'
)
// converting -0 to a number
return
0
;
// might lose information
DBUG_RETURN
(
0
);
// might lose information
}
else
info
->
negative
=
0
;
...
...
@@ -219,33 +219,33 @@ bool test_if_number(NUM_INFO *info, const char *str, uint str_len)
int
error
;
info
->
ullval
=
(
ulonglong
)
my_strtoll10
(
begin
,
&
endpos
,
&
error
);
if
(
info
->
integers
==
1
)
return
0
;
// a single number can't be zerofill
DBUG_RETURN
(
0
);
// a single number can't be zerofill
info
->
maybe_zerofill
=
1
;
return
1
;
// a zerofill number, or an integer
DBUG_RETURN
(
1
);
// a zerofill number, or an integer
}
if
(
*
str
==
'.'
||
*
str
==
'e'
||
*
str
==
'E'
)
{
if
(
info
->
zerofill
)
// can't be zerofill anymore
return
0
;
DBUG_RETURN
(
0
)
;
if
((
str
+
1
)
==
end
)
// number was something like '123[.eE]'
{
char
*
endpos
=
(
char
*
)
str
;
int
error
;
info
->
ullval
=
(
ulonglong
)
my_strtoll10
(
begin
,
&
endpos
,
&
error
);
return
1
;
DBUG_RETURN
(
1
)
;
}
if
(
*
str
==
'e'
||
*
str
==
'E'
)
// number may be something like '1e+50'
{
str
++
;
if
(
*
str
!=
'-'
&&
*
str
!=
'+'
)
return
0
;
DBUG_RETURN
(
0
)
;
for
(
str
++
;
str
!=
end
&&
my_isdigit
(
system_charset_info
,
*
str
);
str
++
)
;
if
(
str
==
end
)
{
info
->
is_float
=
1
;
// we can't use variable decimals here
return
1
;
DBUG_RETURN
(
1
)
;
}
return
0
;
DBUG_RETURN
(
0
)
;
}
for
(
str
++
;
*
(
end
-
1
)
==
'0'
;
end
--
);
// jump over zeros at the end
if
(
str
==
end
)
// number was something like '123.000'
...
...
@@ -253,17 +253,17 @@ bool test_if_number(NUM_INFO *info, const char *str, uint str_len)
char
*
endpos
=
(
char
*
)
str
;
int
error
;
info
->
ullval
=
(
ulonglong
)
my_strtoll10
(
begin
,
&
endpos
,
&
error
);
return
1
;
DBUG_RETURN
(
1
)
;
}
for
(;
str
!=
end
&&
my_isdigit
(
system_charset_info
,
*
str
);
str
++
)
info
->
decimals
++
;
if
(
str
==
end
)
{
info
->
dval
=
my_atof
(
begin
);
return
1
;
DBUG_RETURN
(
1
)
;
}
}
return
0
;
DBUG_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