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
fe9e164f
Commit
fe9e164f
authored
Nov 30, 2005
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: Merge revisions 72:79 from trunk.
parent
0bf7f4bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
13 deletions
+15
-13
handler/ha_innodb.cc
handler/ha_innodb.cc
+14
-12
handler/ha_innodb.h
handler/ha_innodb.h
+1
-1
No files found.
handler/ha_innodb.cc
View file @
fe9e164f
...
...
@@ -205,7 +205,7 @@ static int innobase_rollback(THD* thd, bool all);
static
int
innobase_rollback_to_savepoint
(
THD
*
thd
,
void
*
savepoint
);
static
int
innobase_savepoint
(
THD
*
thd
,
void
*
savepoint
);
static
int
innobase_release_savepoint
(
THD
*
thd
,
void
*
savepoint
);
static
handler
*
innobase_create_handler
(
TABLE
*
table
);
static
handler
*
innobase_create_handler
(
TABLE
_SHARE
*
table
);
handlerton
innobase_hton
=
{
"InnoDB"
,
...
...
@@ -245,7 +245,7 @@ handlerton innobase_hton = {
};
static
handler
*
innobase_create_handler
(
TABLE
*
table
)
static
handler
*
innobase_create_handler
(
TABLE
_SHARE
*
table
)
{
return
new
ha_innobase
(
table
);
}
...
...
@@ -826,7 +826,7 @@ check_trx_exists(
/*************************************************************************
Construct ha_innobase handler. */
ha_innobase
::
ha_innobase
(
TABLE
*
table_arg
)
ha_innobase
::
ha_innobase
(
TABLE
_SHARE
*
table_arg
)
:
handler
(
&
innobase_hton
,
table_arg
),
int_table_flags
(
HA_REC_NOT_IN_SEQ
|
HA_NULL_IN_KEY
|
...
...
@@ -2218,11 +2218,13 @@ innobase_savepoint(
DBUG_ENTER
(
"innobase_savepoint"
);
if
(
!
(
thd
->
options
&
(
OPTION_NOT_AUTOCOMMIT
|
OPTION_BEGIN
)))
{
/* In the autocommit state there is no sense to set a
savepoint: we return immediate success */
DBUG_RETURN
(
0
);
}
/*
In the autocommit mode there is no sense to set a savepoint
(unless we are in sub-statement), so SQL layer ensures that
this method is never called in such situation.
*/
DBUG_ASSERT
(
thd
->
options
&
(
OPTION_NOT_AUTOCOMMIT
|
OPTION_BEGIN
)
||
thd
->
in_sub_stmt
);
trx
=
check_trx_exists
(
thd
);
...
...
@@ -3054,8 +3056,8 @@ ha_innobase::store_key_val_for_row(
if
(
key_part
->
length
>
0
&&
cs
->
mbmaxlen
>
1
)
{
len
=
(
ulint
)
cs
->
cset
->
well_formed_len
(
cs
,
src_start
,
src_start
+
key_part
->
length
,
(
const
char
*
)
src_start
,
(
const
char
*
)
src_start
+
key_part
->
length
,
key_part
->
length
/
cs
->
mbmaxlen
,
&
error
);
}
else
{
...
...
@@ -4825,8 +4827,8 @@ ha_innobase::create(
/* Look for a primary key */
primary_key_no
=
(
table
->
s
->
primary_key
!=
MAX_KEY
?
(
int
)
table
->
s
->
primary_key
:
primary_key_no
=
(
form
->
s
->
primary_key
!=
MAX_KEY
?
(
int
)
form
->
s
->
primary_key
:
-
1
);
/* Our function row_get_mysql_key_number_for_index assumes
...
...
handler/ha_innodb.h
View file @
fe9e164f
...
...
@@ -81,7 +81,7 @@ class ha_innobase: public handler
/* Init values for the class: */
public:
ha_innobase
(
TABLE
*
table_arg
);
ha_innobase
(
TABLE
_SHARE
*
table_arg
);
~
ha_innobase
()
{}
/*
Get the row type from the storage engine. If this method returns
...
...
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