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
02fd56e8
Commit
02fd56e8
authored
Feb 10, 2009
by
Mikael Ronstrom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Workaround for DTrace-related bugs.
Bumped up version number to 0.2.1
parent
14cde79e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
21 deletions
+39
-21
BUILD/build_mccge.sh
BUILD/build_mccge.sh
+1
-1
configure.in
configure.in
+1
-1
sql/mysql_priv.h
sql/mysql_priv.h
+2
-1
sql/sql_parse.cc
sql/sql_parse.cc
+25
-7
sql/sql_update.cc
sql/sql_update.cc
+10
-11
No files found.
BUILD/build_mccge.sh
View file @
02fd56e8
...
...
@@ -1401,7 +1401,7 @@ set_solaris_configs()
compiler_flags
=
"
$compiler_flags
-xregs=frameptr"
compiler_flags
=
"
$compiler_flags
-xO4"
elif
test
"x
$fast_flag
"
=
"xgeneric"
;
then
compiler_flags
=
"
$compiler_flags
-xO
3
"
compiler_flags
=
"
$compiler_flags
-xO
2
"
else
compiler_flags
=
"
$compiler_flags
-xO"
fi
...
...
configure.in
View file @
02fd56e8
...
...
@@ -10,7 +10,7 @@ AC_CANONICAL_SYSTEM
#
# When changing major version number please also check switch statement
# in mysqlbinlog::check_master_version().
AM_INIT_AUTOMAKE
(
mysql, 5.1.31-pv-0.2.
0
)
AM_INIT_AUTOMAKE
(
mysql, 5.1.31-pv-0.2.
1
)
AM_CONFIG_HEADER
([
include/config.h:config.h.in]
)
PROTOCOL_VERSION
=
10
...
...
sql/mysql_priv.h
View file @
02fd56e8
...
...
@@ -1226,7 +1226,8 @@ bool mysql_multi_update(THD *thd, TABLE_LIST *table_list,
List
<
Item
>
*
fields
,
List
<
Item
>
*
values
,
COND
*
conds
,
ulonglong
options
,
enum
enum_duplicates
handle_duplicates
,
bool
ignore
,
SELECT_LEX_UNIT
*
unit
,
SELECT_LEX
*
select_lex
);
SELECT_LEX_UNIT
*
unit
,
SELECT_LEX
*
select_lex
,
multi_update
**
result
);
bool
mysql_prepare_insert
(
THD
*
thd
,
TABLE_LIST
*
table_list
,
TABLE
*
table
,
List
<
Item
>
&
fields
,
List_item
*
values
,
List
<
Item
>
&
update_fields
,
...
...
sql/sql_parse.cc
View file @
02fd56e8
...
...
@@ -3046,13 +3046,31 @@ mysql_execute_command(THD *thd)
#ifdef HAVE_REPLICATION
}
/* unlikely */
#endif
MYSQL_MULTI_UPDATE_START
(
thd
->
query
);
res
=
mysql_multi_update
(
thd
,
all_tables
,
&
select_lex
->
item_list
,
&
lex
->
value_list
,
select_lex
->
where
,
select_lex
->
options
,
lex
->
duplicates
,
lex
->
ignore
,
unit
,
select_lex
);
{
multi_update
*
result_obj
;
MYSQL_MULTI_UPDATE_START
(
thd
->
query
);
res
=
mysql_multi_update
(
thd
,
all_tables
,
&
select_lex
->
item_list
,
&
lex
->
value_list
,
select_lex
->
where
,
select_lex
->
options
,
lex
->
duplicates
,
lex
->
ignore
,
unit
,
select_lex
,
&
result_obj
);
if
(
result_obj
)
{
MYSQL_MULTI_UPDATE_DONE
(
res
,
result_obj
->
num_found
(),
result_obj
->
num_updated
());
res
=
FALSE
;
/* Ignore errors here */
delete
result_obj
;
}
else
{
MYSQL_MULTI_UPDATE_DONE
(
1
,
0
,
0
);
}
}
break
;
}
case
SQLCOM_REPLACE
:
...
...
sql/sql_update.cc
View file @
02fd56e8
...
...
@@ -1193,19 +1193,20 @@ bool mysql_multi_update(THD *thd,
List
<
Item
>
*
values
,
COND
*
conds
,
ulonglong
options
,
enum
enum_duplicates
handle_duplicates
,
bool
ignore
,
SELECT_LEX_UNIT
*
unit
,
SELECT_LEX
*
select_lex
)
enum
enum_duplicates
handle_duplicates
,
bool
ignore
,
SELECT_LEX_UNIT
*
unit
,
SELECT_LEX
*
select_lex
,
multi_update
**
result
)
{
multi_update
*
result
;
bool
res
;
DBUG_ENTER
(
"mysql_multi_update"
);
if
(
!
(
result
=
new
multi_update
(
table_list
,
if
(
!
(
*
result
=
new
multi_update
(
table_list
,
thd
->
lex
->
select_lex
.
leaf_tables
,
fields
,
values
,
handle_duplicates
,
ignore
)))
{
MYSQL_MULTI_UPDATE_DONE
(
1
,
0
,
0
);
DBUG_RETURN
(
TRUE
);
}
...
...
@@ -1221,20 +1222,18 @@ bool mysql_multi_update(THD *thd,
(
ORDER
*
)
NULL
,
options
|
SELECT_NO_JOIN_CACHE
|
SELECT_NO_UNLOCK
|
OPTION_SETUP_TABLES_DONE
,
result
,
unit
,
select_lex
);
*
result
,
unit
,
select_lex
);
DBUG_PRINT
(
"info"
,(
"res: %d report_error: %d"
,
res
,
(
int
)
thd
->
is_error
()));
res
|=
thd
->
is_error
();
if
(
unlikely
(
res
))
{
/* If we had a another error reported earlier then this will be ignored */
result
->
send_error
(
ER_UNKNOWN_ERROR
,
ER
(
ER_UNKNOWN_ERROR
));
result
->
abort
();
(
*
result
)
->
send_error
(
ER_UNKNOWN_ERROR
,
ER
(
ER_UNKNOWN_ERROR
));
(
*
result
)
->
abort
();
}
MYSQL_MULTI_UPDATE_DONE
(
res
,
result
->
num_found
(),
result
->
num_updated
());
delete
result
;
thd
->
abort_on_warning
=
0
;
DBUG_RETURN
(
FALSE
);
DBUG_RETURN
(
res
);
}
...
...
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