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
ad4af102
Commit
ad4af102
authored
Oct 24, 2014
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DB-744 ER_GET_ERRNO has additional parameter on MariaDB 10 which crashes tokudb
parent
424c9f3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
storage/tokudb/hatoku_hton.cc
storage/tokudb/hatoku_hton.cc
+6
-6
No files found.
storage/tokudb/hatoku_hton.cc
View file @
ad4af102
...
@@ -1560,7 +1560,7 @@ static int tokudb_file_map_fill_table(THD *thd, TABLE_LIST *tables, COND *cond)
...
@@ -1560,7 +1560,7 @@ static int tokudb_file_map_fill_table(THD *thd, TABLE_LIST *tables, COND *cond)
}
else
{
}
else
{
error
=
tokudb_file_map
(
table
,
thd
);
error
=
tokudb_file_map
(
table
,
thd
);
if
(
error
)
if
(
error
)
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
);
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
,
tokudb_hton_name
);
}
}
rw_unlock
(
&
tokudb_hton_initialized_lock
);
rw_unlock
(
&
tokudb_hton_initialized_lock
);
...
@@ -1709,7 +1709,7 @@ static int tokudb_fractal_tree_info_fill_table(THD *thd, TABLE_LIST *tables, CON
...
@@ -1709,7 +1709,7 @@ static int tokudb_fractal_tree_info_fill_table(THD *thd, TABLE_LIST *tables, CON
}
else
{
}
else
{
error
=
tokudb_fractal_tree_info
(
table
,
thd
);
error
=
tokudb_fractal_tree_info
(
table
,
thd
);
if
(
error
)
if
(
error
)
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
);
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
,
tokudb_hton_name
);
}
}
//3938: unlock the status flag lock
//3938: unlock the status flag lock
...
@@ -1924,7 +1924,7 @@ static int tokudb_fractal_tree_block_map_fill_table(THD *thd, TABLE_LIST *tables
...
@@ -1924,7 +1924,7 @@ static int tokudb_fractal_tree_block_map_fill_table(THD *thd, TABLE_LIST *tables
}
else
{
}
else
{
error
=
tokudb_fractal_tree_block_map
(
table
,
thd
);
error
=
tokudb_fractal_tree_block_map
(
table
,
thd
);
if
(
error
)
if
(
error
)
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
);
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
,
tokudb_hton_name
);
}
}
//3938: unlock the status flag lock
//3938: unlock the status flag lock
...
@@ -2080,7 +2080,7 @@ static int tokudb_trx_fill_table(THD *thd, TABLE_LIST *tables, COND *cond) {
...
@@ -2080,7 +2080,7 @@ static int tokudb_trx_fill_table(THD *thd, TABLE_LIST *tables, COND *cond) {
struct
tokudb_trx_extra
e
=
{
thd
,
tables
->
table
};
struct
tokudb_trx_extra
e
=
{
thd
,
tables
->
table
};
error
=
db_env
->
iterate_live_transactions
(
db_env
,
tokudb_trx_callback
,
&
e
);
error
=
db_env
->
iterate_live_transactions
(
db_env
,
tokudb_trx_callback
,
&
e
);
if
(
error
)
if
(
error
)
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
);
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
,
tokudb_hton_name
);
}
}
rw_unlock
(
&
tokudb_hton_initialized_lock
);
rw_unlock
(
&
tokudb_hton_initialized_lock
);
...
@@ -2167,7 +2167,7 @@ static int tokudb_lock_waits_fill_table(THD *thd, TABLE_LIST *tables, COND *cond
...
@@ -2167,7 +2167,7 @@ static int tokudb_lock_waits_fill_table(THD *thd, TABLE_LIST *tables, COND *cond
struct
tokudb_lock_waits_extra
e
=
{
thd
,
tables
->
table
};
struct
tokudb_lock_waits_extra
e
=
{
thd
,
tables
->
table
};
error
=
db_env
->
iterate_pending_lock_requests
(
db_env
,
tokudb_lock_waits_callback
,
&
e
);
error
=
db_env
->
iterate_pending_lock_requests
(
db_env
,
tokudb_lock_waits_callback
,
&
e
);
if
(
error
)
if
(
error
)
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
);
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
,
tokudb_hton_name
);
}
}
rw_unlock
(
&
tokudb_hton_initialized_lock
);
rw_unlock
(
&
tokudb_hton_initialized_lock
);
...
@@ -2258,7 +2258,7 @@ static int tokudb_locks_fill_table(THD *thd, TABLE_LIST *tables, COND *cond) {
...
@@ -2258,7 +2258,7 @@ static int tokudb_locks_fill_table(THD *thd, TABLE_LIST *tables, COND *cond) {
struct
tokudb_locks_extra
e
=
{
thd
,
tables
->
table
};
struct
tokudb_locks_extra
e
=
{
thd
,
tables
->
table
};
error
=
db_env
->
iterate_live_transactions
(
db_env
,
tokudb_locks_callback
,
&
e
);
error
=
db_env
->
iterate_live_transactions
(
db_env
,
tokudb_locks_callback
,
&
e
);
if
(
error
)
if
(
error
)
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
);
my_error
(
ER_GET_ERRNO
,
MYF
(
0
),
error
,
tokudb_hton_name
);
}
}
rw_unlock
(
&
tokudb_hton_initialized_lock
);
rw_unlock
(
&
tokudb_hton_initialized_lock
);
...
...
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