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
773ee80f
Commit
773ee80f
authored
Oct 13, 2020
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
federatedx: ha_federatedx::get_txn -> static
parent
4d0b3395
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
storage/federatedx/CMakeLists.txt
storage/federatedx/CMakeLists.txt
+1
-3
storage/federatedx/ha_federatedx.h
storage/federatedx/ha_federatedx.h
+1
-3
No files found.
storage/federatedx/CMakeLists.txt
View file @
773ee80f
SET
(
FEDERATEDX_PLUGIN_STATIC
"federatedx"
)
SET
(
FEDERATEDX_PLUGIN_DYNAMIC
"ha_federatedx"
)
SET
(
FEDERATEDX_SOURCES ha_federatedx.cc federatedx_txn.cc federatedx_io.cc federatedx_io_null.cc federatedx_io_mysql.cc
)
MYSQL_ADD_PLUGIN
(
federatedx
${
FEDERATEDX_SOURCES
}
STORAGE_ENGINE
)
storage/federatedx/ha_federatedx.h
View file @
773ee80f
...
...
@@ -258,7 +258,6 @@ class federatedx_txn
void
stmt_autocommit
();
};
/*
Class definition for the storage engine
*/
...
...
@@ -296,8 +295,7 @@ class ha_federatedx final : public handler
bool
records_in_range
,
bool
eq_range
);
int
stash_remote_error
();
federatedx_txn
*
get_txn
(
THD
*
thd
,
bool
no_create
=
FALSE
);
static
federatedx_txn
*
get_txn
(
THD
*
thd
,
bool
no_create
=
FALSE
);
static
int
disconnect
(
handlerton
*
hton
,
MYSQL_THD
thd
);
static
int
savepoint_set
(
handlerton
*
hton
,
MYSQL_THD
thd
,
void
*
sv
);
static
int
savepoint_rollback
(
handlerton
*
hton
,
MYSQL_THD
thd
,
void
*
sv
);
...
...
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