Bug #43470
closedSQL engine parse ERROR: Still content in clause after parsing!: near "; "
100%
Description
(this occured when using dbal - but problem is in the sql-parser in core)
How to reproduce:- dbal activated
- installing "dam"
Fails with exception
SQL engine parse ERROR: Still content in clause after parsing!: near "; "
thrown in parseCREATEDATABASE() in
typo3/sysext/core/Classes/Database/SqlParser.php
Query leading to this:
string(308) "CREATE TABLE tx_dam_media_types (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
ext varchar(5) DEFAULT '' NOT NULL,
mime varchar(64) DEFAULT '' NOT NULL,
type int(11) DEFAULT '0' NOT NULL,
icon varchar(64) DEFAULT '' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
"
Doing a trim() on the query beforehand it works without any problems. I expect there are newlines or maybe a tab at the end of that string.
Updated by Gerrit Code Review almost 12 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/16875
Updated by Stefan Neufeind almost 12 years ago
Problem lies/can be fixed in trimSql() of the SqlParser in core. It's just triggered by that "random" whitespace-char in create table of dam. See review for details.
Updated by Gerrit Code Review almost 12 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/16875
Updated by Gerrit Code Review almost 12 years ago
Patch set 3 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/16875
Updated by Gerrit Code Review almost 12 years ago
Patch set 1 for branch TYPO3_6-0 has been pushed to the review server.
It is available at http://review.typo3.org/16912
Updated by Gerrit Code Review almost 12 years ago
Patch set 1 for branch TYPO3_4-7 has been pushed to the review server.
It is available at http://review.typo3.org/16913
Updated by Gerrit Code Review almost 12 years ago
Patch set 1 for branch TYPO3_4-6 has been pushed to the review server.
It is available at http://review.typo3.org/16914
Updated by Gerrit Code Review almost 12 years ago
Patch set 1 for branch TYPO3_4-5 has been pushed to the review server.
It is available at http://review.typo3.org/16915
Updated by Stefan Neufeind almost 12 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 339f7396c8c00b7c101d1027947a93ecc0e6de97.