Skip to content

Commit c27c516

Browse files
author
Krunal Bauskar
committed
Bug#19976331 ASSERT !HAS_DONE_RESERVATION, TEMPORARY TABLE
While extending compressed temporary tablespace attributes of shared temporary tablespace were used. Compressed temporary tablespace should be be extended just like normal compressed tablespace. Reviewed by: Sunny Bains ([email protected]) RB: 7499
1 parent 2f82c22 commit c27c516

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/innobase/fsp/fsp0fsp.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,7 @@ fsp_try_extend_data_file(
10681068

10691069
size_increase = srv_sys_space.get_increment();
10701070

1071-
} else if (space->purpose == FIL_TYPE_TEMPORARY) {
1071+
} else if (space->id == srv_tmp_space.space_id()) {
10721072

10731073
size_increase = srv_tmp_space.get_increment();
10741074

0 commit comments

Comments
 (0)