fix a bug in truncating tables. Thanks Tianbao Xie for pointing it out!

This commit is contained in:
SivilTaram 2021-08-30 11:31:31 +08:00
Родитель 0840126967
Коммит 751d84604f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -155,7 +155,7 @@ class RowDeleteTruncate(TableTruncate):
truncated_unrelated_indices.append(_row_idx)
else:
# add neighbours to preserve information aggressively
related_indices.append([_row_idx - 2, _row_idx - 1,
related_indices.extend([_row_idx - 2, _row_idx - 1,
_row_idx,
_row_idx + 1, _row_idx + 2])