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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
cfcf51b7
Commit
cfcf51b7
authored
Oct 01, 2010
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
0b7c5f4d
814fbc5b
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
72 additions
and
2 deletions
+72
-2
mysql-test/r/partition_binlog_stmt.result
mysql-test/r/partition_binlog_stmt.result
+13
-0
mysql-test/t/partition_binlog_stmt.test
mysql-test/t/partition_binlog_stmt.test
+26
-0
sql/ha_partition.cc
sql/ha_partition.cc
+17
-0
sql/ha_partition.h
sql/ha_partition.h
+5
-2
sql/table.cc
sql/table.cc
+10
-0
sql/table.h
sql/table.h
+1
-0
No files found.
mysql-test/r/partition_binlog_stmt.result
0 → 100644
View file @
cfcf51b7
DROP TABLE IF EXISTS t1;
#
# Bug#51851: Server with SBR locks mutex twice on LOAD DATA into
# partitioned MyISAM table
CREATE TABLE t1
(id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name TINYBLOB NOT NULL,
modified TIMESTAMP DEFAULT '0000-00-00 00:00:00',
INDEX namelocs (name(255))) ENGINE = MyISAM
PARTITION BY HASH(id) PARTITIONS 2;
LOAD DATA LOCAL INFILE 'init_file.txt'
INTO TABLE t1 (name);
DROP TABLE t1;
mysql-test/t/partition_binlog_stmt.test
0 → 100644
View file @
cfcf51b7
--
source
include
/
have_partition
.
inc
--
source
include
/
have_binlog_format_statement
.
inc
--
disable_warnings
DROP
TABLE
IF
EXISTS
t1
;
--
enable_warnings
--
echo
#
--
echo
# Bug#51851: Server with SBR locks mutex twice on LOAD DATA into
--
echo
# partitioned MyISAM table
--
write_file
init_file
.
txt
abcd
EOF
CREATE
TABLE
t1
(
id
INT
NOT
NULL
AUTO_INCREMENT
PRIMARY
KEY
,
name
TINYBLOB
NOT
NULL
,
modified
TIMESTAMP
DEFAULT
'0000-00-00 00:00:00'
,
INDEX
namelocs
(
name
(
255
)))
ENGINE
=
MyISAM
PARTITION
BY
HASH
(
id
)
PARTITIONS
2
;
LOAD
DATA
LOCAL
INFILE
'init_file.txt'
INTO
TABLE
t1
(
name
);
--
remove_file
init_file
.
txt
DROP
TABLE
t1
;
sql/ha_partition.cc
View file @
cfcf51b7
...
...
@@ -2451,6 +2451,21 @@ err1:
/****************************************************************************
MODULE open/close object
****************************************************************************/
/**
A destructor for partition-specific TABLE_SHARE data.
*/
void
ha_data_partition_destroy
(
void
*
ha_data
)
{
if
(
ha_data
)
{
HA_DATA_PARTITION
*
ha_part_data
=
(
HA_DATA_PARTITION
*
)
ha_data
;
pthread_mutex_destroy
(
&
ha_part_data
->
LOCK_auto_inc
);
}
}
/*
Open handler object
...
...
@@ -2607,6 +2622,8 @@ int ha_partition::open(const char *name, int mode, uint test_if_locked)
}
DBUG_PRINT
(
"info"
,
(
"table_share->ha_data 0x%p"
,
ha_data
));
bzero
(
ha_data
,
sizeof
(
HA_DATA_PARTITION
));
table_share
->
ha_data_destroy
=
ha_data_partition_destroy
;
VOID
(
pthread_mutex_init
(
&
ha_data
->
LOCK_auto_inc
,
MY_MUTEX_INIT_FAST
));
}
if
(
is_not_tmp_table
)
pthread_mutex_unlock
(
&
table_share
->
mutex
);
...
...
sql/ha_partition.h
View file @
cfcf51b7
...
...
@@ -44,6 +44,7 @@ typedef struct st_partition_share
typedef
struct
st_ha_data_partition
{
ulonglong
next_auto_inc_val
;
/**< first non reserved value */
pthread_mutex_t
LOCK_auto_inc
;
bool
auto_inc_initialized
;
}
HA_DATA_PARTITION
;
...
...
@@ -948,8 +949,9 @@ private:
DBUG_ASSERT
(
table_share
->
ha_data
&&
!
auto_increment_lock
);
if
(
table_share
->
tmp_table
==
NO_TMP_TABLE
)
{
HA_DATA_PARTITION
*
ha_data
=
(
HA_DATA_PARTITION
*
)
table_share
->
ha_data
;
auto_increment_lock
=
TRUE
;
pthread_mutex_lock
(
&
table_share
->
mutex
);
pthread_mutex_lock
(
&
ha_data
->
LOCK_auto_inc
);
}
}
virtual
void
unlock_auto_increment
()
...
...
@@ -962,7 +964,8 @@ private:
*/
if
(
auto_increment_lock
&&
!
auto_increment_safe_stmt_log_lock
)
{
pthread_mutex_unlock
(
&
table_share
->
mutex
);
HA_DATA_PARTITION
*
ha_data
=
(
HA_DATA_PARTITION
*
)
table_share
->
ha_data
;
pthread_mutex_unlock
(
&
ha_data
->
LOCK_auto_inc
);
auto_increment_lock
=
FALSE
;
}
}
...
...
sql/table.cc
View file @
cfcf51b7
...
...
@@ -425,6 +425,11 @@ void free_table_share(TABLE_SHARE *share)
key_info
->
flags
=
0
;
}
}
if
(
share
->
ha_data_destroy
)
{
share
->
ha_data_destroy
(
share
->
ha_data
);
share
->
ha_data_destroy
=
NULL
;
}
/* We must copy mem_root from share because share is allocated through it */
memcpy
((
char
*
)
&
mem_root
,
(
char
*
)
&
share
->
mem_root
,
sizeof
(
mem_root
));
free_root
(
&
mem_root
,
MYF
(
0
));
// Free's share
...
...
@@ -1616,6 +1621,11 @@ static int open_binary_frm(THD *thd, TABLE_SHARE *share, uchar *head,
delete
crypted
;
delete
handler_file
;
hash_free
(
&
share
->
name_hash
);
if
(
share
->
ha_data_destroy
)
{
share
->
ha_data_destroy
(
share
->
ha_data
);
share
->
ha_data_destroy
=
NULL
;
}
open_table_error
(
share
,
error
,
share
->
open_errno
,
errarg
);
DBUG_RETURN
(
error
);
...
...
sql/table.h
View file @
cfcf51b7
...
...
@@ -463,6 +463,7 @@ typedef struct st_table_share
/** place to store storage engine specific data */
void
*
ha_data
;
void
(
*
ha_data_destroy
)(
void
*
);
/* An optional destructor for ha_data. */
/*
...
...
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