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
2a868224
Commit
2a868224
authored
May 02, 2014
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#223 build tokudb without upserts
parent
85d338cc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
9 deletions
+3
-9
storage/tokudb/ha_tokudb.cc
storage/tokudb/ha_tokudb.cc
+3
-3
storage/tokudb/ha_tokudb_update.cc
storage/tokudb/ha_tokudb_update.cc
+0
-6
No files found.
storage/tokudb/ha_tokudb.cc
View file @
2a868224
...
...
@@ -103,9 +103,6 @@ extern "C" {
#define MYSQL_SERVER 1
#include "mysql_version.h"
#if MYSQL_VERSION_ID < 50506
#include "mysql_priv.h"
#else
#include "sql_table.h"
#include "handler.h"
#include "table.h"
...
...
@@ -113,6 +110,9 @@ extern "C" {
#include "sql_class.h"
#include "sql_show.h"
#include "discover.h"
#if (50600 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50699) || (50700 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50799)
#include <binlog.h>
#endif
#include "db.h"
...
...
storage/tokudb/ha_tokudb_update.cc
View file @
2a868224
...
...
@@ -553,12 +553,6 @@ static bool is_strict_mode(THD *thd) {
#endif
}
#if 50600 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50699
#include <binlog.h>
#elif 50500 <= MYSQL_VERSION_ID && MYSQL_VERSION_ID <= 50599
#include <log.h>
#endif
// Check if an update operation can be handled by this storage engine. Return true if it can.
bool
ha_tokudb
::
check_fast_update
(
THD
*
thd
,
List
<
Item
>
&
fields
,
List
<
Item
>
&
values
,
Item
*
conds
)
{
if
(
!
transaction
)
...
...
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