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
fde5386d
Commit
fde5386d
authored
6 years ago
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add dict_table_t::not_redundant()
parent
92f6c234
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
22 deletions
+8
-22
storage/innobase/handler/handler0alter.cc
storage/innobase/handler/handler0alter.cc
+3
-0
storage/innobase/include/dict0dict.h
storage/innobase/include/dict0dict.h
+2
-9
storage/innobase/include/dict0dict.ic
storage/innobase/include/dict0dict.ic
+0
-13
storage/innobase/include/dict0mem.h
storage/innobase/include/dict0mem.h
+3
-0
No files found.
storage/innobase/handler/handler0alter.cc
View file @
fde5386d
...
...
@@ -150,6 +150,9 @@ inline void dict_table_t::prepare_instant(const dict_table_t& old,
DBUG_ASSERT
(
n_dropped
()
==
0
);
DBUG_ASSERT
(
old
.
n_cols
==
old
.
n_def
);
DBUG_ASSERT
(
n_cols
==
n_def
);
DBUG_ASSERT
(
old
.
not_redundant
()
==
not_redundant
());
DBUG_ASSERT
(
old
.
supports_instant
());
DBUG_ASSERT
(
supports_instant
());
const
dict_index_t
&
oindex
=
*
old
.
indexes
.
start
;
dict_index_t
&
index
=
*
indexes
.
start
;
...
...
This diff is collapsed.
Click to expand it.
storage/innobase/include/dict0dict.h
View file @
fde5386d
...
...
@@ -904,15 +904,8 @@ dict_index_get_min_size(
/*====================*/
const
dict_index_t
*
index
)
/*!< in: index */
MY_ATTRIBUTE
((
nonnull
,
warn_unused_result
));
/********************************************************************//**
Check whether the table uses the compact page format.
@return TRUE if table uses the compact page format */
UNIV_INLINE
bool
dict_table_is_comp
(
/*===============*/
const
dict_table_t
*
table
)
/*!< in: table */
MY_ATTRIBUTE
((
nonnull
,
warn_unused_result
));
#define dict_table_is_comp(table) (table)->not_redundant()
/** Determine if a table uses atomic BLOBs (no locally stored prefix).
@param[in] table InnoDB table
...
...
This diff is collapsed.
Click to expand it.
storage/innobase/include/dict0dict.ic
View file @
fde5386d
...
...
@@ -532,19 +532,6 @@ dict_table_get_sys_col_no(
return unsigned(table->n_cols) + (sys - DATA_N_SYS_COLS);
}
/********************************************************************//**
Check whether the table uses the compact page format.
@return TRUE if table uses the compact page format */
UNIV_INLINE
bool
dict_table_is_comp(
/*===============*/
const dict_table_t* table) /*!< in: table */
{
ut_ad(table);
return (table->flags & DICT_TF_COMPACT) != 0;
}
/************************************************************************
Check if the table has an FTS index. */
UNIV_INLINE
...
...
This diff is collapsed.
Click to expand it.
storage/innobase/include/dict0mem.h
View file @
fde5386d
...
...
@@ -1558,6 +1558,9 @@ struct dict_table_t {
return
flags2
&
DICT_TF2_TEMPORARY
;
}
/** @return whether the table is not in ROW_FORMAT=REDUNDANT */
bool
not_redundant
()
const
{
return
flags
&
DICT_TF_COMPACT
;
}
/** @return whether this table is readable
@retval true normally
@retval false if this is a single-table tablespace
...
...
This diff is collapsed.
Click to expand it.
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