Commit 3fbb9c39 authored by unknown's avatar unknown
Browse files

fil0fil.c:

  At the shutdown, write the latest lsn only to the first pages of the ibdata files of the system tablespace, NOT to the .ibd files; writing to tens of thousands .ibd files can take minutes


innobase/fil/fil0fil.c:
  At the shutdown, write the latest lsn only to the first pages of the ibdata files of the system tablespace, NOT to the .ibd files; writing to tens of thousands .ibd files can take minutes
parent ad5ec8a4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1447,7 +1447,8 @@ fil_write_flushed_lsn_to_data_files(
		cache. Note that all data files in the system tablespace 0 are
		always open. */

		if (space->purpose == FIL_TABLESPACE) {
		if (space->purpose == FIL_TABLESPACE
		    && space->id == 0) {
			sum_of_sizes = 0;

			node = UT_LIST_GET_FIRST(space->chain);