TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,46 @@
.. include:: /Includes.rst.txt
.. _breaking-68401:
================================================
Breaking: #68401 - SqlParser moved into EXT:dbal
================================================
See :issue:`68401`
Description
===========
The SQL Parser included with the core has not been in use by anything
except EXT:dbal for some time. The SQL parser has been merged with the
version in EXT:dbal which now provides parsing and compiling of SQL
statements for MySQL as well as other DBMS.
Impact
======
There is no impact for the core as EXT:dbal was the sole user of the SQL
parser and it has been migrated into EXT:dbal.
As the parsing and the compiling of SQL statements has been separated into
multiple classes the non-public interface of `SqlParser` has changed.
Classes extending SqlParser need to be adjusted to the new interface.
Affected Installations
======================
Installations with 3rd party extensions that use `\TYPO3\CMS\Core\Database\SqlParser`.
Migration
=========
Update the code to use `\TYPO3\CMS\Dbal\Database\SqlParser` instead of
`\TYPO3\CMS\Core\Database\SqlParser` or install EXT:compatibility6 which
maps the old class names to the new ones in EXT:dbal.
.. index:: PHP-API, Database, ext:dbal