• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/search/reindex/headindex.php
  • Класс: BitrixDiskSearchReindexHeadIndex
  • Вызов: HeadIndex::handleFinishExecution
static function handleFinishExecution()
{
	$connection = Application::getConnection();
	if (!$connection->getTableField(ObjectTable::getTableName(), 'SEARCH_INDEX'))
	{
		return;
	}

	$limit = ModuleManager::isModuleInstalled('bitrix24')? 500 : 60000;
	if (ObjectTable::getCount() < $limit)
	{
		$connection->dropColumn(ObjectTable::getTableName(), 'SEARCH_INDEX');

		return;
	}

	static::addNotifyToAdmin();
}