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
2e6a444f
Commit
2e6a444f
authored
Aug 24, 2010
by
Alfranio Correia
Browse files
Options
Browse Files
Download
Plain Diff
merge mysql-5.5-bugfixing (local) --> mysql-5.5-bugfixing
parents
c83ff21e
ee07ed22
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
72 deletions
+73
-72
mysql-test/r/mysqlbinlog_row.result
mysql-test/r/mysqlbinlog_row.result
+69
-69
sql/log_event.cc
sql/log_event.cc
+2
-1
sql/sql_table.cc
sql/sql_table.cc
+2
-2
No files found.
mysql-test/r/mysqlbinlog_row.result
View file @
2e6a444f
This diff is collapsed.
Click to expand it.
sql/log_event.cc
View file @
2e6a444f
...
...
@@ -674,7 +674,8 @@ const char* Log_event::get_type_str()
#ifndef MYSQL_CLIENT
Log_event
::
Log_event
(
THD
*
thd_arg
,
uint16
flags_arg
,
bool
using_trans
)
:
log_pos
(
0
),
temp_buf
(
0
),
exec_time
(
0
),
flags
(
flags_arg
),
thd
(
thd_arg
)
:
log_pos
(
0
),
temp_buf
(
0
),
exec_time
(
0
),
flags
(
flags_arg
),
cache_type
(
Log_event
::
EVENT_INVALID_CACHE
),
thd
(
thd_arg
)
{
server_id
=
thd
->
server_id
;
when
=
thd
->
start_time
;
...
...
sql/sql_table.cc
View file @
2e6a444f
...
...
@@ -4268,6 +4268,7 @@ bool mysql_create_table(THD *thd, TABLE_LIST *create_table,
Alter_info
*
alter_info
)
{
bool
result
;
bool
is_trans
=
FALSE
;
DBUG_ENTER
(
"mysql_create_table"
);
/*
...
...
@@ -4282,7 +4283,6 @@ bool mysql_create_table(THD *thd, TABLE_LIST *create_table,
/* Got lock. */
DEBUG_SYNC
(
thd
,
"locked_table_name"
);
bool
is_trans
;
result
=
mysql_create_table_no_lock
(
thd
,
create_table
->
db
,
create_table
->
table_name
,
create_info
,
alter_info
,
FALSE
,
0
,
&
is_trans
);
...
...
@@ -4454,6 +4454,7 @@ bool mysql_create_like_table(THD* thd, TABLE_LIST* table, TABLE_LIST* src_table,
HA_CREATE_INFO
local_create_info
;
Alter_info
local_alter_info
;
bool
res
=
TRUE
;
bool
is_trans
=
FALSE
;
uint
not_used
;
DBUG_ENTER
(
"mysql_create_like_table"
);
...
...
@@ -4503,7 +4504,6 @@ bool mysql_create_like_table(THD* thd, TABLE_LIST* table, TABLE_LIST* src_table,
/* Reset auto-increment counter for the new table. */
local_create_info
.
auto_increment_value
=
0
;
bool
is_trans
;
if
((
res
=
mysql_create_table_no_lock
(
thd
,
table
->
db
,
table
->
table_name
,
&
local_create_info
,
&
local_alter_info
,
FALSE
,
0
,
&
is_trans
)))
...
...
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