Commit 10bb8cc
committed
MDEV-40167: GTT created with the InnoDB incorrectly accept FULLTEXT/VECTOR indexes
Problem:
GLOBAL TEMPORARY tables were not subject to the same option/index restrictions as session TEMPORARY tables. Several InnoDB and server-layer checks tested only tmp_table(), so GLOBAL TEMPORARY tables could bypass validation for VECTOR/FULLTEXT indexes, DATA DIRECTORY, KEY_BLOCK_SIZE, and ROW_FORMAT=COMPRESSED.
Cause:
global_tmp_table() was added as a separate predicate from tmp_table(), but not all temp-table checks were updated to test both, so GLOBAL TEMPORARY tables fell through to "permanent table" logic in several places.
Fix:
Added global_tmp_table() alongside tmp_table() at each affected check:
Reject VECTOR and FULLTEXT indexes on GLOBAL TEMPORARY tables.
Reject/warn on DATA DIRECTORY, KEY_BLOCK_SIZE, and ROW_FORMAT=COMPRESSED for GLOBAL TEMPORARY tables, with accurate wording in the DATA DIRECTORY warning.
Fixed zip_allowed and related ut_ad assertions to exclude GLOBAL TEMPORARY tables.
Fixed m_use_file_per_table in set_tablespace_type() to exclude GLOBAL TEMPORARY tables (also fixes m_use_data_dir).
GLOBAL TEMPORARY tables now validate the same as session TEMPORARY tables across these options.1 parent fcf1416 commit 10bb8cc
4 files changed
Lines changed: 55 additions & 20 deletions
File tree
- mysql-test/main
- sql
- storage/innobase/handler
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1322 | 1322 | | |
1323 | 1323 | | |
1324 | 1324 | | |
| 1325 | + | |
| 1326 | + | |
1325 | 1327 | | |
1326 | 1328 | | |
1327 | 1329 | | |
| |||
1351 | 1353 | | |
1352 | 1354 | | |
1353 | 1355 | | |
| 1356 | + | |
| 1357 | + | |
| 1358 | + | |
| 1359 | + | |
| 1360 | + | |
| 1361 | + | |
| 1362 | + | |
| 1363 | + | |
| 1364 | + | |
| 1365 | + | |
| 1366 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1234 | 1234 | | |
1235 | 1235 | | |
1236 | 1236 | | |
| 1237 | + | |
| 1238 | + | |
| 1239 | + | |
| 1240 | + | |
| 1241 | + | |
| 1242 | + | |
| 1243 | + | |
| 1244 | + | |
| 1245 | + | |
| 1246 | + | |
| 1247 | + | |
| 1248 | + | |
| 1249 | + | |
| 1250 | + | |
| 1251 | + | |
| 1252 | + | |
| 1253 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3778 | 3778 | | |
3779 | 3779 | | |
3780 | 3780 | | |
3781 | | - | |
| 3781 | + | |
3782 | 3782 | | |
3783 | 3783 | | |
3784 | 3784 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11055 | 11055 | | |
11056 | 11056 | | |
11057 | 11057 | | |
11058 | | - | |
11059 | | - | |
11060 | | - | |
11061 | | - | |
11062 | | - | |
11063 | | - | |
11064 | | - | |
11065 | | - | |
11066 | | - | |
| 11058 | + | |
| 11059 | + | |
| 11060 | + | |
| 11061 | + | |
| 11062 | + | |
| 11063 | + | |
| 11064 | + | |
| 11065 | + | |
| 11066 | + | |
| 11067 | + | |
| 11068 | + | |
11067 | 11069 | | |
11068 | 11070 | | |
11069 | 11071 | | |
| |||
11086 | 11088 | | |
11087 | 11089 | | |
11088 | 11090 | | |
| 11091 | + | |
11089 | 11092 | | |
11090 | 11093 | | |
11091 | 11094 | | |
| |||
11096 | 11099 | | |
11097 | 11100 | | |
11098 | 11101 | | |
11099 | | - | |
| 11102 | + | |
11100 | 11103 | | |
11101 | 11104 | | |
11102 | 11105 | | |
| |||
11152 | 11155 | | |
11153 | 11156 | | |
11154 | 11157 | | |
11155 | | - | |
| 11158 | + | |
11156 | 11159 | | |
11157 | 11160 | | |
11158 | 11161 | | |
| |||
11510 | 11513 | | |
11511 | 11514 | | |
11512 | 11515 | | |
11513 | | - | |
| 11516 | + | |
| 11517 | + | |
11514 | 11518 | | |
11515 | 11519 | | |
11516 | 11520 | | |
| |||
11531 | 11535 | | |
11532 | 11536 | | |
11533 | 11537 | | |
11534 | | - | |
| 11538 | + | |
11535 | 11539 | | |
11536 | 11540 | | |
11537 | 11541 | | |
| |||
11581 | 11585 | | |
11582 | 11586 | | |
11583 | 11587 | | |
11584 | | - | |
| 11588 | + | |
11585 | 11589 | | |
11586 | 11590 | | |
11587 | 11591 | | |
| |||
11653 | 11657 | | |
11654 | 11658 | | |
11655 | 11659 | | |
11656 | | - | |
| 11660 | + | |
11657 | 11661 | | |
11658 | 11662 | | |
11659 | 11663 | | |
| |||
11698 | 11702 | | |
11699 | 11703 | | |
11700 | 11704 | | |
11701 | | - | |
11702 | | - | |
| 11705 | + | |
| 11706 | + | |
11703 | 11707 | | |
11704 | 11708 | | |
11705 | 11709 | | |
| |||
11929 | 11933 | | |
11930 | 11934 | | |
11931 | 11935 | | |
11932 | | - | |
| 11936 | + | |
| 11937 | + | |
11933 | 11938 | | |
11934 | 11939 | | |
11935 | | - | |
| 11940 | + | |
11936 | 11941 | | |
11937 | 11942 | | |
11938 | 11943 | | |
| |||
0 commit comments