Method TYPO3\CMS\Core\DataHandling\DataHandler->deleteSpecificPage fails when vcc is installed.
This method loops through all tables in $GLOBALS['TCA'] and tries to find any records on a specific page searching by column pid
Table tx_scheduler_task does't have a field pid. Therefore the database query fails:
'SELECT uid FROM tx_scheduler_task WHERE pid = ?' with params
[1297]: Unknown column 'pid' in 'where clause'
The extension scheduler doesn't register tx_scheduler_task with TCA but vcc does extend it.
This seems to be the reason why it fails...
Thanks @meisterkaiser for reporting.
Method
TYPO3\CMS\Core\DataHandling\DataHandler->deleteSpecificPagefails when vcc is installed.This method loops through all tables in
$GLOBALS['TCA']and tries to find any records on a specific page searching by columnpidTable
tx_scheduler_taskdoes't have a fieldpid. Therefore the database query fails:The extension
schedulerdoesn't registertx_scheduler_taskwith TCA butvccdoes extend it.This seems to be the reason why it fails...
Thanks @meisterkaiser for reporting.