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
ecf54df9
Commit
ecf54df9
authored
Dec 17, 2003
by
jani@linux.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some minor issues, revealed by compiler warnings when using
BUILD/compile-pentium-debug-max
parent
7a1fddaa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
3 deletions
+15
-3
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
sql/item_func.cc
sql/item_func.cc
+5
-0
sql/opt_range.cc
sql/opt_range.cc
+1
-0
sql/sql_insert.cc
sql/sql_insert.cc
+8
-3
No files found.
BitKeeper/etc/logging_ok
View file @
ecf54df9
...
...
@@ -49,6 +49,7 @@ jani@dsl-kpogw4gb5.dial.inet.fi
jani@hynda.(none)
jani@hynda.mysql.fi
jani@janikt.pp.saunalahti.fi
jani@linux.local
jani@rhols221.adsl.netsonic.fi
jani@rhols221.arenanet.fi
jani@ua126d19.elisa.omakaista.fi
...
...
sql/item_func.cc
View file @
ecf54df9
...
...
@@ -3144,6 +3144,11 @@ Item_func_sp::fix_length_and_dec()
decimals
=
0
;
max_length
=
21
;
break
;
case
ROW_RESULT
:
default:
// This case should never be choosen
DBUG_ASSERT
(
0
);
break
;
}
}
DBUG_VOID_RETURN
;
...
...
sql/opt_range.cc
View file @
ecf54df9
...
...
@@ -1014,6 +1014,7 @@ int SQL_SELECT::test_quick_select(THD *thd, key_map keys_to_use,
SEL_IMERGE
*
min_imerge
=
NULL
;
double
min_imerge_cost
=
DBL_MAX
;
ha_rows
min_imerge_records
;
LINT_INIT
(
min_imerge_records
);
// Protected by min_imerge
List_iterator_fast
<
SEL_IMERGE
>
it
(
tree
->
merges
);
while
((
imerge
=
it
++
))
...
...
sql/sql_insert.cc
View file @
ecf54df9
...
...
@@ -1140,7 +1140,9 @@ extern "C" pthread_handler_decl(handle_delayed_insert,arg)
/* request for new delayed insert */
if
(
!
(
thd
->
lock
=
mysql_lock_tables
(
thd
,
&
di
->
table
,
1
)))
{
di
->
dead
=
thd
->
killed
=
THD
::
KILL_CONNECTION
;
// Fatal error
/* Fatal error */
di
->
dead
=
1
;
thd
->
killed
=
THD
::
KILL_CONNECTION
;
}
pthread_cond_broadcast
(
&
di
->
cond_client
);
}
...
...
@@ -1148,7 +1150,9 @@ extern "C" pthread_handler_decl(handle_delayed_insert,arg)
{
if
(
di
->
handle_inserts
())
{
di
->
dead
=
thd
->
killed
=
THD
::
KILL_CONNECTION
;
// Some fatal error
/* Some fatal error */
di
->
dead
=
1
;
thd
->
killed
=
THD
::
KILL_CONNECTION
;
}
}
di
->
status
=
0
;
...
...
@@ -1175,7 +1179,8 @@ extern "C" pthread_handler_decl(handle_delayed_insert,arg)
close_thread_tables
(
thd
);
// Free the table
di
->
table
=
0
;
di
->
dead
=
thd
->
killed
=
THD
::
KILL_CONNECTION
;
// If error
di
->
dead
=
1
;
// If error
thd
->
killed
=
THD
::
KILL_CONNECTION
;
// If error
pthread_cond_broadcast
(
&
di
->
cond_client
);
// Safety
pthread_mutex_unlock
(
&
di
->
mutex
);
...
...
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