File tree Expand file tree Collapse file tree 5 files changed +0
-33
lines changed Expand file tree Collapse file tree 5 files changed +0
-33
lines changed Original file line number Diff line number Diff line change @@ -354,9 +354,6 @@ dict_build_table_def_step(
354
354
355
355
/* Always set this bit for all new created tables */
356
356
DICT_TF2_FLAG_SET (table, DICT_TF2_FTS_AUX_HEX_NAME);
357
- DBUG_EXECUTE_IF (" innodb_test_wrong_fts_aux_table_name" ,
358
- DICT_TF2_FLAG_UNSET (table,
359
- DICT_TF2_FTS_AUX_HEX_NAME););
360
357
361
358
if (DICT_TF2_FLAG_IS_SET (table, DICT_TF2_USE_FILE_PER_TABLE)) {
362
359
/* This table will need a new tablespace. */
Original file line number Diff line number Diff line change @@ -12185,8 +12185,6 @@ bool create_table_info_t::innobase_table_flags()
12185
12185
12186
12186
/* Set the flags2 when create table or alter tables */
12187
12187
m_flags2 |= DICT_TF2_FTS_AUX_HEX_NAME;
12188
- DBUG_EXECUTE_IF("innodb_test_wrong_fts_aux_table_name",
12189
- m_flags2 &= ~DICT_TF2_FTS_AUX_HEX_NAME;);
12190
12188
12191
12189
DBUG_RETURN(true);
12192
12190
}
Original file line number Diff line number Diff line change @@ -34,29 +34,6 @@ fts_write_object_id(
34
34
ib_id_t id, /* in: a table/index id */
35
35
char * str) /* in: buffer to write the id to */
36
36
{
37
-
38
- #ifdef _WIN32
39
-
40
- DBUG_EXECUTE_IF (" innodb_test_wrong_non_windows_fts_aux_table_name" ,
41
- return (sprintf (str, UINT64PFx, id)););
42
-
43
- /* Use this to construct old(5.6.14 and 5.7.3) windows
44
- ambiguous aux table names */
45
- DBUG_EXECUTE_IF (" innodb_test_wrong_fts_aux_table_name" ,
46
- return (sprintf (str, " %016llu" , (ulonglong) id)););
47
-
48
- #else /* _WIN32 */
49
-
50
- /* Use this to construct old(5.6.14 and 5.7.3) windows
51
- ambiguous aux table names */
52
- DBUG_EXECUTE_IF (" innodb_test_wrong_windows_fts_aux_table_name" ,
53
- return (sprintf (str, " %016llu" , (ulonglong) id)););
54
-
55
- DBUG_EXECUTE_IF (" innodb_test_wrong_fts_aux_table_name" ,
56
- return (sprintf (str, " %016llx" , (ulonglong) id)););
57
-
58
- #endif /* _WIN32 */
59
-
60
37
return (sprintf (str, " %016llx" , (ulonglong) id));
61
38
}
62
39
Original file line number Diff line number Diff line change @@ -1777,9 +1777,6 @@ pars_create_table(
1777
1777
ulint flags = 0 ;
1778
1778
ulint flags2 = DICT_TF2_FTS_AUX_HEX_NAME;
1779
1779
1780
- DBUG_EXECUTE_IF (" innodb_test_wrong_fts_aux_table_name" ,
1781
- flags2 &= ~DICT_TF2_FTS_AUX_HEX_NAME;);
1782
-
1783
1780
n_cols = que_node_list_get_len (column_defs);
1784
1781
1785
1782
table = dict_mem_table_create (
Original file line number Diff line number Diff line change @@ -1657,8 +1657,6 @@ row_fts_merge_insert(
1657
1657
/* We should set the flags2 with aux_table_name here,
1658
1658
in order to get the correct aux table names. */
1659
1659
index->table ->flags2 |= DICT_TF2_FTS_AUX_HEX_NAME;
1660
- DBUG_EXECUTE_IF (" innodb_test_wrong_fts_aux_table_name" ,
1661
- index->table ->flags2 &= ~DICT_TF2_FTS_AUX_HEX_NAME;);
1662
1660
fts_table.type = FTS_INDEX_TABLE;
1663
1661
fts_table.index_id = index->id ;
1664
1662
fts_table.table_id = table->id ;
You can’t perform that action at this time.
0 commit comments