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
3d0d290f
Commit
3d0d290f
authored
Nov 30, 2016
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove tablespace code from InnoDB compilation as it is not used.
parent
674e3388
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+4
-0
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
3d0d290f
...
...
@@ -12854,6 +12854,7 @@ create_table_info_t::create_option_data_directory_is_valid()
}
#ifdef MYSQL_TABLESPACES
#define IDENT_NAME_OK 0
static
int
check_tablespace_name
(
const
char
*
name
)
{
...
...
@@ -13046,6 +13047,7 @@ create_table_info_t::create_option_tablespace_is_valid()
return
(
true
);
}
#endif
#ifdef MYSQL_COMPRESSION
/** Validate the COPMRESSION option.
...
...
@@ -13136,6 +13138,7 @@ create_table_info_t::create_options_are_invalid()
ut_ad
(
m_thd
!=
NULL
);
ut_ad
(
m_create_info
!=
NULL
);
#ifdef MYSQL_TABLESPACES
/* The TABLESPACE designation on a CREATE TABLE is not subject to
non-strict-mode. If it is incorrect or is incompatible with other
options, then we will return an error. Make sure the tablespace exists
...
...
@@ -13143,6 +13146,7 @@ create_table_info_t::create_options_are_invalid()
if
(
!
create_option_tablespace_is_valid
())
{
return
(
"TABLESPACE"
);
}
#endif
/* If innodb_strict_mode is not set don't do any more validation.
Also, if this table is being put into a shared general tablespace
...
...
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