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
a0420267
Commit
a0420267
authored
May 07, 2021
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-18518 fixup: Remove unused variables
parent
c74f059a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
storage/innobase/fts/fts0fts.cc
storage/innobase/fts/fts0fts.cc
+0
-16
No files found.
storage/innobase/fts/fts0fts.cc
View file @
a0420267
...
...
@@ -1795,10 +1795,6 @@ fts_create_common_tables(
[
MAX_FULL_NAME_LEN
];
dict_index_t
*
index
=
NULL
;
/* common_tables vector is used for dropping FTS common tables
on error condition. */
std
::
vector
<
dict_table_t
*>
common_tables
;
std
::
vector
<
dict_table_t
*>::
const_iterator
it
;
FTS_INIT_FTS_TABLE
(
&
fts_table
,
NULL
,
FTS_COMMON_TABLE
,
table
);
...
...
@@ -1820,20 +1816,9 @@ fts_create_common_tables(
if
(
common_table
==
NULL
)
{
error
=
DB_ERROR
;
goto
func_exit
;
}
else
{
common_tables
.
push_back
(
common_table
);
}
mem_heap_empty
(
heap
);
DBUG_EXECUTE_IF
(
"ib_fts_aux_table_error"
,
/* Return error after creating FTS_AUX_CONFIG table. */
if
(
i
==
4
)
{
error
=
DB_ERROR
;
goto
func_exit
;
}
);
}
/* Write the default settings to the config table. */
...
...
@@ -1864,7 +1849,6 @@ fts_create_common_tables(
FIL_DEFAULT_ENCRYPTION_KEY
);
func_exit:
common_tables
.
clear
();
mem_heap_free
(
heap
);
return
(
error
);
...
...
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