In my TYPO3 v7.6 installation, I have an SQL script with the following line:
recursive tinyint(3) unsigned DEFAULT '0' NOT NULL,
This tries to create a column named 'recursive'.
Unfortunately, recursive is a reserved keyword since MariaDB 10.2. I tried escaping the word like this:
`recursive`
but this still gave me the same error as before:
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB | | | server version for the right syntax to use near 'recursive tinyint(3) unsigned NOT NULL | | | default '0'' at line XYZ.
How can I edit my statement to make this work? Downgrading MariaDB is not an option.