fix a bug in truncating tables. Thanks Tianbao Xie for pointing it out!
This commit is contained in:
Родитель
0840126967
Коммит
751d84604f
|
@ -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])
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче